ok... i've been trying to make this work for 2 days:
i have a scene with a button and a movie clip. the movie clip is called "MovieClip1 ". within the movie clip i've labeled a frame late in the clip called "Near End". i want my button to make the playhead goto that labeled frame within the movie clip but it does not.
the button has the following actionscript 2.0:
what am i doing wrong?
i have a scene with a button and a movie clip. the movie clip is called "MovieClip1 ". within the movie clip i've labeled a frame late in the clip called "Near End". i want my button to make the playhead goto that labeled frame within the movie clip but it does not.
the button has the following actionscript 2.0:
Code:
on (release) { _root.MovieClip1.gotoAndPlay("Near End"); }
Comment