Hello,
The following actionscript works for me to loop my flv. However, I would like to have the flv loop, not to the beginning of the video, but to the middle of the video. Would I have to incorporate cue points to accomplish this?
var myLis:Object = new Object;
myLis.complete = function(){
flvPlayer.play();
}
flvPlayer.addEventListener(“complete”, myLis);