This is my first AppleScript and what I would like is a script to trim a defined number of pixels from all the images within a folder. This is what I have but I don’t seem to get anything from it.
Thanks,
Jeff
on open theImages
repeat with theImage in theImages
tell application “GraphicConverter”
open theImage
tell window 1
change margins with {0, -25, -18, -18}
close saving yes
end tell
end tell
end repeat
end open