Hi,
This is my first post here. I am a newbie to flash coding. I have a button inside a movie clip. When i click on the button it should gotoandplay a certain frame from another movie clip and when i do a rollOut it should gotoandplay a certain frame from another movie.
Below is the code i tried but it does not work.
on (press) {
_root.Symbol7.gotoAndPlay(186); // Symbol7 is the name of the movie clip
}
on (rollOut) {
_root.Symbol9.gotoAndPlay(21); // Symbol9 is the name of the movie clip
}
I have the above code on the button.
Please let me know how to get this done.
Thanks