PDA

View Full Version : [AS2] Video loop - FLVPlayback


Digital Pimp
09-18-2008, 10:18 AM
Hi

I am using the following code to loop my vid...

on(complete){
this.autoRewind = true;
this.play();
}

The problem is that I get a slight glitch before the vid plays again. Is there any kind of way round this.

TIA :)

NinoK5
02-04-2009, 08:46 AM
I think you might have less of a glitch if you define a cue point a few frames before the video ends, and use ,

FLVPlayback.seek(0);
FLVPlayback.play();


Check the flash help files if you need to know how to set up cue point with the component.

Good luck.