Hello!
Does anyone know if there is a way to read out the action steps in an action?
I want to be able to resume a stopped action at the step it was stopped, but I have no way of finding out the currently selected step.
photoshop.app.actionTree doesn’t seem to expose this.
I know how to play an action from a certain step using:
_obj: "play",
_target: [
{
_ref: "command",
_index: <insert index here>
},
{
_ref: "action",
_name: actionName
},
{
_ref: "actionSet",
_name: actionSetName
}
],
continue: true,
_options: {
dialogOptions: "dontDisplay"
}
Thanks!