By Andrew Sherman @Andrew_Sherman
How do I use "run command" in a script?
I want to run a separate command at the end of a script but I don't know what to put in the beginning of the run command section.
(throw 'context missing').runCommand({
commandId: "user:default:ckl0mv9pe0000yh10fqyb15aa#ckl0mvgwt0001yh10ftn53fpd",
});
- Dustin Harris @Dustin_Harris
I might be wrong as this is off the top of my head and I’m on my phone, but I think it’s
sf.soundflow.runCommand({})
(Just for the insight:throw
is used to abort a script and send an error message)- AAndrew Sherman @Andrew_Sherman
That's it Dustin, thank you!