Page 1 of 1

How to display a message for a period of time.

Posted: Tue Aug 31, 2010 6:27 pm
by HunterEC
Guys:

How can I display a message to the end user for n seconds and then go off automatically ? Thank you.

Re: How to display a message for a period of time.

Posted: Tue Aug 31, 2010 8:09 pm
by Jack
I think you have the MsgWait function :

MsgWait("Info text","Title",delay)

MsgWait("You will be redirected to ......","Attention",3) && display 3 seconds

Re: How to display a message for a period of time.

Posted: Wed Sep 01, 2010 6:02 am
by HunterEC
Jack:

Thank you very much ! :D

Re: How to display a message for a period of time.

Posted: Wed Sep 01, 2010 6:50 am
by Otto
You can also look at: MsgRun +

MsgSplash( cImage, nSeconds, bAction ). cImage can be file or resource. If bAction is specified, the codeblock is evaluated with oImage as parameter and Splash continues till the bAction is executed or expiry of nSeconds whicheve is later.

Best regards,
Otto

Re: How to display a message for a period of time.

Posted: Wed Sep 01, 2010 4:55 pm
by HunterEC
Otto:

Thank you very much ! As always, very helpful. 8)