我是Flash的新手,我需要将一个flv插入一个新的Flash项目中,我希望该视频能够不间断地播放。
感谢
这很有趣,但如果我使用较小的视频,那么视频就会循环播放......
答案 0 :(得分:2)
如果您使用的是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();
};
我希望它有所帮助,祝你好运 罗布
答案 1 :(得分:1)
here's an example with a looped flv,您几乎只需要NetConnection
,NetStream
和Video