Man your not a retard , your still learning, its takes time and patience and alot of tutorials for you to become comfortable with action scripting,
My advice is to do as much tutorials as you can, the ones here on kirupa are well written and explain what most of the code does and why, before you can create some intresting animation is best that you are comfortable with the basics.
I hope you understand what i mean, just stick with it, and you will get it sooner or later.
and yeah here is the fla to your problem.
http://members.optushome.com.au/paulsoultis/ajhelpfix.fla
-there were a few things with your file, in the ‘see’ movie where you have the tweens next and first, you have 2 many stop actions, though this is not a problem its just that its not needed, there is one layer for action that all that is needed, you dont have to apply stop on each layer.
- with the code you had before, you wearnt calling the frame label from the right movie, because you just said go to the frame,
it was looking in the movie where you have the buttons on your navigation, this is why you needed to give the movie ‘see’ a instance name , so it can be called from anyplace in the flash movie.
for example, the buttons are nested in a movie called menu.
so if you did the same action that you attempted, it will look for frame labels in that movie clip. so in order to reach the one you want you need to let flash know that you are targetting to that ‘see’ movie clip that we gave a instance name of ‘window’,
which in result is
on (release) {
_root.window.gotoAndPlay(“next”);
}
_root : this is telling flash to go back to the main timeline
.window : this is the movieclip we are targetting
.gotoAndPlay : this is the action we are telling it to do
(“next”); : this is the framelabel we are calling
}
hope you understand, if not just look around for some tutorials that better explain this that i do.
good luck.