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: Jim Sheffer <email@hidden>
- Date: Wed, 19 Dec 2001 09:23:08 -0800
Michelle-
This is pretty close to what I have now- all I need it to do is save the
resized and reformatted jpg into a different folder, keeping the origional
name (which the above does). This is the part that's giving me fits :)
JIm
on 12/18/01 4:09 PM, Gnarlodious at email@hidden wrote:
>
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