hello,
i am using AS2. i wanted to tragger 2 things by clicking one button.
1)the movie clip(R1) play its 2nd frame
2)play the 2nd frame on the main stage(parent/root)
here i tried:
stop();
R1.onRelease = function() {
gotoAndPlay(2);
_root.gotoAndPlay(2);
};
but it only do the first command.
what should i do??