I'm a bit disappointed in myself that I couldn't come up with the answer to this one.. thanks in advance for your answers.
Here's my actionscript for a button - each frame has a corresponding movie clip called "showmeclip#," with the # corresponding to the frame in the main timeline.
on (release) {
var currFrame = _level0._currentframe;
var clipName = "showmeclip" + currFrame;
clipName.gotoAndPlay(2);
}
Flash does not seem to want to invoke the gotoAndPlay(2) function based on clipName. Thoughts?
Thanks,
Terwin
Here's my actionscript for a button - each frame has a corresponding movie clip called "showmeclip#," with the # corresponding to the frame in the main timeline.
on (release) {
var currFrame = _level0._currentframe;
var clipName = "showmeclip" + currFrame;
clipName.gotoAndPlay(2);
}
Flash does not seem to want to invoke the gotoAndPlay(2) function based on clipName. Thoughts?
Thanks,
Terwin