‎2009 Sep 08 5:05 AM
Hi,
I am printing some words for 1000 lines.
I want to print the program based on the time lines.
After the first line print,the second line needs to be printed after 1 minute.
is it possible to do this.
‎2009 Sep 08 5:10 AM
Hi,
Wait is achived bu foll syntax
wait up to 60 seconds .
So if u want the lines to be printed one by one after every 1 min , u need to have the above line of code in a loop.
Thanks ,
Supriya
‎2009 Sep 08 5:38 AM
You can use WAIT command for this.
Example
write: 'Test'.
wait UP TO 10 SECONDS.
write: 'Test1'.
Hope this will help you.