This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Receive images as input | |
on open theImages | |
-- Ask the user to specify a scaled image size | |
set theChoice to choose from list {"Low", "Medium", "High", "Custom"} default items {"Medium"} with title "Evernote > Scale Images Script" with prompt "Scale to what size?" | |
if theChoice = false then return | |
set theChoice to item 1 of theChoice | |
-- Set the maximum number of pixels accordingly, based on the specified scaled image size | |
if theChoice = "Low" then |
NewerOlder