script planning advise
I would like to ask for help in planning a Bridge script.
I am a beginner Photoshop and Bridge developer.
Script behavior:
Check for selected thumbnail
Open the selected thumbnail/s from Bridge in Photoshop.
Run a set of Photoshop actions
Save the changes to the file
Close the file
How do I approach these tasks programmatically?
What are the sequence of events to necessary to execute the script?
Applying photoshop scripting as a model I can come up with this sequence which can be scripted with the if else statement.
// check if thumbnail is selected
// if no thumbnail is selected send alert message
// if thumbnail is selected open in Photoshop
// run photoshop actions
// save changes to file
// close file
Will this approach work with a Bridge script?
How do I call the Photoshop application from Bridge?
