-
Using Cue Points in FLV
So I'm sort of a beginner and trying to do something that seems like it should be fairly simple, but am having trouble finding any help online.
I used Adobe Media Encoder to put a cue point in my fly. The cue point is called CuePoint1.
Basically I just want to have my video play until CuePoint1, and always pause at that point, then continue to play the video when the user clicks on a "next" movieclip (or button) on the stage.
Help please?
-
This may be missing something but if I remember right:
Code:
import fl.video.MetadataEvent;
myVID.addEventListener(MetadataEvent.CUE_POINT, cp_listener);
function cp_listener(e:MetadataEvent):void{
if(e.name=="CuePoint1")
myVID.stop();
}