I need something like a msgbox
displaying in my script but without the need for waiting to click okay.
What I need is to display a string for a certain duration of time and then make it disappear. It would be helpful if it can display a live timer string but not mandatory.
Something like:
;//...
msgbox, MyInformationString; display information
sleep, 30000 ; wait 30 seconds
;// close msgbox but HOW ???
;//...
It doesn't have to be the msgbox
command. but I can not figure out how to create a new popup or any other way to display information. Format is the least of my concern here.