Heya. I'm very new to flash and I'm trying to loop a couple of flv files with Flash. I'm currently using the following code I dug up somewhere:
The problem is that every time the file loops there is a split-second flicker, like a transparent frame between the last and first frame of the flv. Could somebody perhaps lend advice on how to get rid of this flicker?Code:import fl.video.VideoEvent; flvClip.addEventListener(fl.video.VideoEvent.COMPLETE, videoFinished); function videoFinished(event:Event){ flvClip.play(); };


Reply With Quote