i am just starting out making flash movies, and basically the way I have been making the navigation work is on every button, I assign the action to go to the movie clip where my “content” is and then I also have to tell it to gotoandStop in frame 1 of every other movie clip, which means they do not show up on the stage because all the frame ones are blank), so as you can imagine this gets exhausting when you have more than a few pages, and it is a pain to update. Can anyone offer a more streamlined, simplified way to accomplish this?
Here is an example of what I do now:
on (release) {
_root.contentemployment.gotoAndStop(1);
_root.contentprofile.gotoAndStop(2);
_root.contentnews.gotoAndStop(1);
_root.contentcontact.gotoAndStop(1);
_root.contentframe.contenthome.gotoAndStop(1);
_root.contentourwork.gotoAndStop(1);
_root.contentresidential.gotoAndStop(1);
_root.contentcommercial.gotoAndStop(1);
_root.contentcivic.gotoAndStop(1);
_root.contenturban.gotoAndStop(1);
_root.contentinstitutional.gotoAndStop(1);
_root.contentprofile.profilemarty.gotoAndStop(1);
_root.contentprofile.profilepete.gotoAndStop(1);
_root.contentprofile.profilebryan.gotoAndStop(1);
}