Search found 1 match
- Thu Jul 16, 2020 11:02 pm
- Forum: Suggestions
- Topic: shortcut to stop robotask
- Replies: 6
- Views: 37172
Re: shortcut to stop robotask
I have a task dedicated for stopping all running tasks. It uses the following vb script: cnt = RoboTaskApp.TaskCount for i=0 to cnt-1 step 1 nam = RoboTaskApp.TaskInfoExtname(i) if nam <> "Task3" Then logmessage("Stop task " + nam) RoboTaskApp.StopTask(nam) end if next Task3 is t...