scripting neebie, NEED HELP!

I need PhotoShop CS2 to auotmatically launch & run an actio that I have written to convert large numbers of images downloaded to my FTP site. I have tried to figure out how to do this, but I am at a total loss. Someone PLEASE help me.

I am running OSX 10.3.9 on a G4 with a Gig of RAM.

Any help would be GREATLY APPRECIATED!

Thanks in advance, Spencer

Model: G4
AppleScript: No flippin clue?
Browser: Internet Explorer 5.23
Operating System: Mac OS X (10.4)

I’m new to AS, but try this and see if it works. Do you need to process a bunch of files at once? Here’s the basic script though…


set thefile to choose file with prompt "Select file to process"
tell application "Adobe Photoshop CS2"
activate
open thefile
do action "My Preset Action" from "My Action Set"
close front document saving yes
end tell