How can a message box be closed automatically after a defined time? Just to let a user inform about some macro steps!
I use Message command. Are there any other commands available?
Close message box after defined time
Moderators: JRL, Dorian (MJT support)
Look at using an OnEvent like...
OnEvent>WINDOW_OPEN,MyMessageWindow*,2,CloseWindowSub
SRT>CloseWindowSub
wait>15
clo>MyMessageWindow*
wwc>MyMessageWindow*
END>CLoseWindowSub
You may need to use a Dialog> so that you have the ability to name the window, as opposed to using a simple Messagebox (Message or MessageModal)
look in the help files for the syntax of Dialog>
OnEvent>WINDOW_OPEN,MyMessageWindow*,2,CloseWindowSub
SRT>CloseWindowSub
wait>15
clo>MyMessageWindow*
wwc>MyMessageWindow*
END>CLoseWindowSub
You may need to use a Dialog> so that you have the ability to name the window, as opposed to using a simple Messagebox (Message or MessageModal)
look in the help files for the syntax of Dialog>