Hi,
I have a script that is looping like this :
for (i=0;i<100;i++)
{
do 1
do 2
display
setTimeout("tim er",1000);
while (timer!=null) process_event_p ending();// in Window C
do 3
clearTimeout;
}
In MS C, I can loop and yield the process until timer="";
But, it seems that I can not do it in Javascript. So, is
there anyway to wait for time out?
Thanks.
Comment