Looping an FLV video
Posted on 07. Dec, 2009 by thornyeternity in ActionScript 3 Snippets, Code, Flash
FLV Playback component is named “myvideo”
myvideo.addEventListener(Event.COMPLETE, doLoop);
function doLoop(event:Event):void{
myvideo.autoRewind=true;
myvideo.play();
}


