Hi!
Im trying to do some plain animation in Flash CS3,
I want a button to play an animation and when done go to the next frame, which holds a new set of buttons and animation, but when I type the gotoAndPlay command, it goes to the right frame but it doesnt play the animation. Does anyone know what Im doing wrong?
Pleasse let me know! Im just getting started with animating in flash and could use all the help I can get
Im using the code in frame 1:
#include āmc_tween2.asā
stop();
btn1.onRelease = function () {
main_mc.rotateTo(-50, 0.6, āeaseInOutSineā);
main_mc.tween("_x", 400, 0.6, āeaseInOutSineā);
gotoAndPlay(āscen2ā);
}
and the code in frame 2:
stop();
btn2.onRelease = function () {
main.rotateTo(0, 0.6, āeaseInOutSineā);
main.tween("_x", 0, 0.6, āeaseInOutSineā);
}