Hi All,
I have a movie clip as a button, in the _Over state there is another layer with a nested movie clip. This nested clip has a stop(); on the first frame and a “start” label on a labels layer on the second frame. When the first movie clip is rolled over it should gotoAndPlay(“start”). It doesn’t the playback head in the nested clip does not advance beyond the first frame stop action,I inserted a blank keyframe after the stop() and still nothing. What did I goof. below is the path to the clip in question
events_mc.onRollOver = function() {
events_mc.eyeEvents_mc.eventsText_mc.gotoAndPlay(“start”);
};