Trying to target a series of mc’s on my timeline using video cue points but can only get the first one to work… Can someone please take a look at my code?
var listenerObject:Object = new Object();
listenerObject.cuePoint = function(eventObject:Object):Void {
var cuePtName = eventObject.info.name;
[COLOR=“Red”]//this targets the first mc on my timeline
[/COLOR]if (cuePtName == “process”) {
txt_mc.gotoAndStop(“process”);
}
};
video_mask.flv.addEventListener(“cuePoint”, listenerObject);
[COLOR=“Red”]//this targets another mc on the same timeline but isn’t working?//[/COLOR]
if (cuePtName == “it_systems”) {
txt_mc.gotoAndStop(“it_systems”);