PDA

View Full Version : external video not looping! why???


lsatdown
03-07-2007, 01:36 PM
Hi, I have a flvplayback component loading in an external flv, but it's just not looping, code:
var listenerObject:Object = new Object();
listenerObject.complete = function(eventObject:Object):Void {
// sends the playhead to the begining
myFLV.seek(0);
// plays the FLV again
myFLV.play();
};
myFLV.addEventListener("complete", listenerObject);

I read somewhere about some videos not sending the 'complete' back to the swf?

lsatdown
03-07-2007, 01:54 PM
anyone??