PhotoShop SaveAsIBMPCtiff
PhotoShop SaveAsIBMPCtiff
- Subject: PhotoShop SaveAsIBMPCtiff
- From: email@hidden
- Date: Tue, 15 Oct 2002 08:19:00 -0500
I'm using ScriptDebugger 3.05 and Photoshop 7.01 on Mac OS 10.2 or 10.1.5.
All I want to do is open a Mac TIFF file and save it as PC TIFF file. All
Photoshop parameter settings get applied except for the "byte order". I
can't get it to save as a IBM PC file. Here's the simple script:
tell application "Finder"
set myTempFileName to "OS X:Users:gbrown:Desktop:Ducky.psd"
end tell
tell application "Adobe Photoshop 7.0"
activate
open file myTempFileName
set myOptions to {class:TIFF save options, image compression:none,
byte order:IBM PC, save alpha channels:true, save spot colors:true, embed
color profile:true}
save current document in file myTempFileName as TIFF with options
myOptions appending lowercase extension without copying
end tell
Seems very simple. Any ideas? What am I doing wrong?
Thanks
_______________________________________________
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.