PDA

View Full Version : how to make 'WAIT' or PAUSE'


2epro
07-11-2008, 08:18 AM
hwo can i make the application "WAIT" or "PAUSE" for X seconds ?

Adam
07-11-2008, 08:47 AM
Use Application.Sleep() (http://www.indigorose.com/webhelp/ams/Program_Reference/Actions/Application.Sleep.htm)

Adam Kapilik

arb
07-11-2008, 09:04 AM
Yes but it will puase the whole application, not only the script and thats the problem.

Imagine Programming
07-11-2008, 11:35 AM
use the page's On Timer event... and place the next in On Show:

Page.StartTimer(1000) --one second, change as you need

Then the script that is placed in the On Timer event will be executed every 1 second...

2epro
07-13-2008, 12:24 AM
Use Application.Sleep() (http://www.indigorose.com/webhelp/ams/Program_Reference/Actions/Application.Sleep.htm)

Adam Kapilik

thank you adam