I want to convert all files
in folder/subfolders from EPS to JPEG.
The save option does not
work even though I got the example of script from Photoshop applescript manual.
Also this script does not check the subfolders for file.
tell application
"Finder"
set flist to
every file in folder hotFolder
repeat with
curfile in flist
---set
file names
set nm to
name of curfile as string
set dnm to
curfile as string
set
newfile to hotFolder & characters 1 thru 5 of nm & "cc.jpg"
if nm
contains ".eps" then
tell
application "Adobe Photoshop 7.0"
open
file dnm
set
myOptions to {class:JPEG save options, embed color profile: false, format
options:
standard,
matte: background color mate,}
save
document in file newfile as jpeg with options myOptions with replacing
end
tell
end if
end repeat
end tell
Appreciate all the help.
Ruby