I want to place an on release action on this "button" movie clip which will take the viewer to frame 2- please see example fla attached.
I am using Flash 8. I would be grateful if anyone could help me.
Printable View
I want to place an on release action on this "button" movie clip which will take the viewer to frame 2- please see example fla attached.
I am using Flash 8. I would be grateful if anyone could help me.
gh_mc.onRelease = function () {
gotoAndStop(2);
}
for some reason the above post doesn't work but this seems to do the job!
Code:gh_mc.onPress = function () {
NextFrame();
}
function NextFrame() {
gotoAndStop(2);
}
Thank you very much. Really appreciate your help.
might be the goto reference.. first post should work with something like _root.gotoAndStop or _parent.gotoAndStop.. worked without the specifying the hierarchy for me. /shrug
@'s post actually works for me. Again, thanks.