Move file to Photoshop Droplet
Move file to Photoshop Droplet
- Subject: Move file to Photoshop Droplet
- From: John McMillan <email@hidden>
- Date: Thu, 07 Mar 2002 09:30:29 +0000
I am trying to find a quick get around to add to our pre press environment.
It is to do with re-saving Photoshop DCS files as a single EPS file.
I have created a Photoshop Droplet to save the DCS files as single EPS. I
now want to create a script which will automatically move the master file of
a folder of say twenty DCS sets (file which dose not end in either C,M,Y or
K) unto this Photoshop droplet which will in turn save all five DCS files as
one single EPS.
I have got this far with my script but have got stuck on the moving part of
the script. Also open to any other suggestions as to a work round.
on open fileList
repeat with oneFile in fileList
set oneFile to oneFile as string
if oneFile does not end with ".c" and oneFile does not end with ".m"
and oneFile does not end with ".y" and oneFile does not end with
".k" then
move oneFile to "PSHOP DROP"
end if
end repeat
end open
Clear as mud
Beginner John
_______________________________________________
applescript-users mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/applescript-users
Do not post admin requests to the list. They will be ignored.