Если вы используете компонент FLVPlayback, код для зацикливания вашего видео должен выглядеть так:
import fl.video.VideoEvent;
/**
* Your code where you set the source and other properties of the FLVPlayback component
*/
//Add an event listener to the COMPLETE event, so you will know when the video reached the last frame
flvComp.addEventListener(VideoEvent.COMPLETE, loopVideo);
//Rewind and start playing the video again
function loopVideo(event:VideoEvent):void
{
flvComp.autoRewind = true;
flvComp.play();
};
Надеюсь, это поможет, удачи Роб