Animating in flash

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 :wink:

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ā€);

}