Re: Graphic Converter
Re: Graphic Converter
- Subject: Re: Graphic Converter
- From: Michelle Steiner <email@hidden>
- Date: Sat, 3 Nov 2001 07:32:12 -0700
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
----------------------------------------------------------------------
| Michelle Steiner | We're not human beings having a spiritual |
| | experience. We're spiritual beings |
| email@hidden | having a human experience. |
----------------------------------------------------------------------