Flash AS 2 Button
I recently made a website, and the buttons look like this:
On(release) { gotoAndPlay ("title", 1); }
My problem is, when you click the button the first time, it goes to the correct frame. but when you click it again, it goes to the next开发者_JAVA技巧 frame, or to the next scene. How do I remedy this? thanks!
The args for gotoAndPlay are scene and frame. So without seeing your code I can only recommend that you
- have more than one scene
- have a scene named "title"
- if you have a scene named "title" that it has more than a couple of frames in it, as well as something that will "stop" the timeline
精彩评论