Re: Photoshop CS not save to path
Re: Photoshop CS not save to path
- Subject: Re: Photoshop CS not save to path
- From: Martin Orpen <email@hidden>
- Date: Thu, 03 Jun 2004 13:27:12 +0100
on 3/6/04 11:34 am, Michael Tompsett at email@hidden wrote:
>
When saving a file from Photoshop CS (os x 10.3.3), photoshop never saves the
>
file in the path specified in the script.
The script works fine in 10.3.4 - saving the file to the specified path.
>
Below is a standard example script from Adobe, which creates a new document
>
and should save it in the documents folder of the user. When the script is run
>
it actually saves the file here:
>
>
Macintosh HD:Applications:Adobe Photoshop CS:Adobe Photoshop
>
CS.app:Contents:MacOSClassic:PStest0020.TIFF
That's very odd - are you sure that the script is running from the correct
(OS X) version of Photoshop? Might this be caused by the script running in
Classic?
>
tell application "Finder" to set myTempFileName to (home as string) &
>
"Documents:PStest0020.TIFF"
As Shane mentioned, you can do this without calling on the Finder with
something like this:
set myTempFileName to (path to documents folder as string) &
"PStest0020.TIFF"
Regards
--
Martin Orpen
Idea Digital Imaging Ltd -- The Image Specialists
http://www.idea-digital.com
_______________________________________________
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.