You just want it to keep executing
getTime();?
code:
x = 1;
while(x == 1) {
getTime();
}
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();
}
}
*
Not the correct code but you get the idea.