I’ve got this FLV which plays, and one cue Point at the end where the timeline advances to frame 2 and a static mc fades in in front of it with clickable text links.
I’ve been over the documentation and I’m getting most of it but I’m not seeing where I explicitly name the cuePoint so AS will recognize it.
the code I have is:
stop();
var listenerObject:Object = new Object;
listenerObject.cuePoint = function (eventObject:Object):Void {
this.gotoAndPlay(2);
};
The cue Point is named fadeInFrame. How do I name it for the AS to see it? It doesn’t seem to be in the help files.