Flash CS3 FLV question
Flash CS3 FLV question
Out of context: Reply #2
- Started
- Last post
- 3 Responses
- ********0
just imported the video with flash's own interface - ie file, import video, and then i set my cue point...I think that if its loaded dynamically or if the FLV is made differently it may be gone - if your curious my code looks like this:
function onCuePoint(cp:Object) {
cp.info.name = "loadContent"
openingSeq.gotoAndPlay(1);
loadContent();
//trace("something");
};
openingSeq.addEventListener("cue... onCuePoint);function loadContent() {
image_mc.gotoAndPlay(2);
};