Bah, you really need to read my post carefully
quote:
Originally posted by hmaster
You just want it to keep executing getTime();?
code:
x = 1;
while(x == 1) {
getTime();
}
I have said I did
code:
while(true) getTime();
and it didn't work.
quote:
You can also add when the video is finished not to execute.
code:
x = 1;
while(x == 1) {
if(flowplayer1.stopped == true) { *
x = 0;
} else {
getTime();
}
}
Apparently, there's routine for checking if the video is stopped.
But getTime() will simply return 0 (seconds) if the video is stopped.