Copy link to clipboard
Copied
Sorry if this is obvious but we have to start somewhere
I've a simple script that calls an action that works fine unless the action has a stop in it when a dialog showing Error 8007 appears. Basically what I'm wanting to know is what I need to add to the script so that once the action is called the script is terminated as it seems that control is still with the script even though the action is running.
Thank you for your help.
Copy link to clipboard
Copied
You can put the action call in a try/catch block
try{
doAction('Action 1','Set 1' );
}catch(e){}
Copy link to clipboard
Copied
Thank you so much for your help.
Find more inspiration, events, and resources on the new Adobe Community
Explore Now