Search found 1 match

by Hallstead
Thu Jul 16, 2020 11:02 pm
Forum: Suggestions
Topic: shortcut to stop robotask
Replies: 6
Views: 26553

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...