WhutEvur
04-11-2006, 07:52 PM
I looked at many posts and seen different ways to do this. However I can not find one that can clearly explain how I can make the cue points trigger embed slides or even go to a labeled frame in the time line.
This script sees the cue point because it dispalys them in the output window.
var listenerObject:Object = new Object();
listenerObject.cuePoint = function(eventObject:Object):Void {
trace("Elapsed time in seconds: " + my_FLVPlybk.playheadTime);
trace("Cue point name is: " + eventObject.info.name);
trace("Cue point type is: " + eventObject.info.type);
}
my_FLVPlybk.addEventListener("cuePoint", listenerObject);
I'm making a slide show and I just want the slides to change when the cue point comes up. Any ideas, or is there a GOOD tutorial on how to do this?
This script sees the cue point because it dispalys them in the output window.
var listenerObject:Object = new Object();
listenerObject.cuePoint = function(eventObject:Object):Void {
trace("Elapsed time in seconds: " + my_FLVPlybk.playheadTime);
trace("Cue point name is: " + eventObject.info.name);
trace("Cue point type is: " + eventObject.info.type);
}
my_FLVPlybk.addEventListener("cuePoint", listenerObject);
I'm making a slide show and I just want the slides to change when the cue point comes up. Any ideas, or is there a GOOD tutorial on how to do this?