I got 2 main tasks, Preparing and Finishing, split up in different actions/steps.
See pictures:
PREPARING

FINISHING

In red, the amount of seconds it takes on average, is displayed.
I want those seconds/minutes to show in a non-active message-box, at every step, like the 'Show Notification / Desktop-alert':

But that only goes till 20 seconds max.
Could you extend the duration to let's say 5 mins in next update?
And even better, I want to see it counting down.
I've found a VBScript on the internet, that does the counting-down, but it gets in the way of the other actions/tasks.

Robotask will simply wait, until this count-down is over, and then proceeds.
The VBScript add-in of Robotask is missing a 'Wait until Task is Finished', to disable.
See script:
Code: Select all
Dim counter
Dim oShell
counter = 21
Set oShell= CreateObject("Wscript.Shell")
While counter > 0
oShell.Popup " Left " & counter & " Seconds",1,"Remind"
counter = counter-1
Wend
Or is this simply a request to add into Robotask, like Rukbunker did here, http://robotask.com/forum/viewtopic.php ... =countdown before?