and have had a few problems but I have finally got the movie clip working, but I have just tried to apply actions to my buttons that make up my movie clip and the links donât work?!
the different stages of the buttons show (up, over, down, hit) but when I click on the button it wont go to the next page? Iâm not sure why?
I have applied the actions as I would to a normal button, just selecting it, but when I test the movie, it doesnât transfer me to the next page when I click on the buttons?
The actions I am using are:
on (release) {
gotoandstop (foundation scroll 2 drawing, 1);
}
It looks like youâre trying to have it go to another scene, if thatâs the case then you should have your actions target a frame label located on that scene instead. So if you have a frame label named âblahâ, your action would look like this:
Flash allows you to give a frame a name. Just go to the scene that you want your button to target, click on the frame you want to name and open your properties panel and youâll see a input field marked âframe labelâ. Type in a name like âblahâ, close the panel and youâll see that âblahâ appeared on your timeline. So the action that I gave you above will tell flash to go to this frame named âblahâ and stop there. I hope that was a bit more clearer. =)