Hi there.
I need some help in Flash As2.
I have an animated movie clip that has a button inside it.
The idea is to be able to click on the movie clip and get it to run the animation (with on(release){ gotoandplay(2);} as its code) and then stop on frame 10.
So far that is working fine as it should.
Where im falling down is that on Frame 10 there is a new symbol (Attractions_button (This has an instance name)) that I want to be able to click and take me to a frame on the main time-line.
With some research into this I cannot find a solution. So far I have labeled the frame i wish to link to on the main time-line as NRM and have tried the following code on the button symbol itself:
onRelease = function(){
_root.gotoAndPlay(“Scene 1”, “NRM”);
}
Any help would be much appreciated
Thanks.