Re: In a pickle with simple resize script
Re: In a pickle with simple resize script
- Subject: Re: In a pickle with simple resize script
- From: Gnarlodious <email@hidden>
- Date: Tue, 18 Dec 2001 17:09:06 -0700
maybe this will help you out:
On 11/3/01 4:35 AM, John Nichol <email@hidden> wrote:
>
Has anyone developed a script that tells Graphic Converter to convert
>
a folder of images from one image format to another?
Here's one; it saves them as jpeg.
--Michelle
set the folderToProcess to choose folder
tell application "Finder"
set the photoList to (the files of the folderToProcess)
end tell
repeat with photo in the photoList
tell application "GraphicConverter"
open the photo as alias
save window 1 as JPEG with wwwready without makeCopy
close window 1
end tell
end repeat
Rachel
http://www.gnarlodious.com