Does anyone know how to AppleScript Auto Color in PS7?
Does anyone know how to AppleScript Auto Color in PS7?
- Subject: Does anyone know how to AppleScript Auto Color in PS7?
- From: Ron Bishop <email@hidden>
- Date: Thu, 20 Jun 2002 15:25:42 -0500
I would like to be able to set the settings for Auto Color and run it by
AppleScript. I've been able to run it in conjunction with Javascript.
Any ideas?
Here's what I got so far...
tell application "Adobe Photoshop 7.0"
activate
set allCurrentDocuments to count of documents
repeat allCurrentDocuments times
tell current document
do javascript "{var id110 = charIDToTypeID( \"Lvls\" );var
desc33 = new ActionDescriptor();var id111 = stringIDToTypeID
( \"autoBlackWhite\" ); desc33.putBoolean( id111, true ); var id112 =
stringIDToTypeID( \"autoNeutrals\" );desc33.putBoolean( id112, true
);executeAction( id110, desc33, DialogModes.NO );}"
save
close without saving
end tell
end repeat
end tell
Thanks,
Ron Bishop
www.daddydoodaa.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.