Re: Question for Photoshop scripters
Re: Question for Photoshop scripters
- Subject: Re: Question for Photoshop scripters
- From: Paul Skinner <email@hidden>
- Date: Sun, 8 Dec 2002 10:39:31 -0500
It depends on what you want in the end. I use this to generate files
for hue rotation movies. (Oooooo...) Just set the degree of hue
rotation and a 'save as' in a PS action and then call it. I use a
finder call to rename the output file to simplify the action.
The action in this case just needs...
with colorize
hue+5--or whatever you like.
Save as 'shifted.psd' in my output folder
repeat with loop from 1 to 60
tell application "Adobe Photoshop 7.0"
do script "hue rotation"
tell application "Finder"
set name of file ("titan:Users:paulskin:Pictures:shifted series:" &
"shifted.psd") to ((loop as text) & ".psd") as text
end tell
end tell
end repeat
So in my case I get a folder full of sequentially numbered, hue
shifted files ready for import to QuickTime.
--
Paul Skinner
On Sunday, December 8, 2002, at 08:25 AM, Mr Tea wrote:
Is there any way to set the hue, saturation and brightness values of a
hue/saturation adjustment layer in a P'shop document with AppleScript?
I want to make multiple versions of images, nudging the hue along a few
degrees each time (with the colorize option selected).
Any suggestions about how to automate this dull task - short of
recording a
mega-action in Photoshop - warmly welcomed.
Thanks
Mr Tea
_______________________________________________
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.