Come for answers, stay for best practices. All we're missing is you.
Forum question posted -
We have a situation where a workflow kicks off in the background and we'd like to be able to specify a certain time for the playback to sit and wait (i.e. 20 minutes). We see that there is the event below, but it looks like that is specifically for the Long Op dialog. Are there any other events we could use for the described situation?
{ "event":"waitForPleaseWaitToClear", "minutes":[20] }
Yes, you can use:
{"event":"sleep","params":[2]}
where 2 is the number of seconds you want the script to wait between executing two lines.
Thanks,
Kristin