shortcut to stop robotask
shortcut to stop robotask
Would be nice if you could stop all robotask tasks using a key combination or something. When you are are executing a task sometimes you have a lot of instruction that goes to an specified window. When you are testing your task, it becames really annoying trying to stop robotask while you are fighting with the fixed window protection.
shortcut to stop robotask
There is Stop button for this purpose:
It stops selected task. The second click causes unconditional termination of the task.
It stops selected task. The second click causes unconditional termination of the task.
shortcut to stop robotask
yes, but when the task is running and you have something like send keystrokes to a windows with fixed window (protect against casual window switching) you wont be able to open robotask window.
shortcut to stop robotask
Ok, I wrote this into our ToDo. Probably we'll devise
something.
One advise right now:
You can make the task which stops your main task and attach
Hot-Key trigger for it.
something.
One advise right now:
You can make the task which stops your main task and attach
Hot-Key trigger for it.
Re: shortcut to stop robotask
I have a task dedicated for stopping all running tasks. It uses the following vb script:
Task3 is the external name of the task. It loops through all your tasks and stops them all except for this task.
Code: Select all
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
Re: shortcut to stop robotask
I modified the script
See below. It is universal
See below. It is universal
Code: Select all
cnt = RoboTaskApp.TaskCount
SelfName = RoboTaskApp.ExpandText("{TaskExtName}")
for i=0 to cnt-1 step 1
nam = RoboTaskApp.TaskInfoExtname(i)
if nam <> SelfName Then
logmessage("Stop task " + nam)
RoboTaskApp.StopTask(nam)
end if
next
Oleg Yershov
Re: shortcut to stop robotask
Got this already for some years and it proofed itself many times. In our case: Control+F12 is the kill switch 
