Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Hi

Status
Not open for further replies.

help120

Technical User
Apr 15, 2001
198
US
I'm sure this has been asked before and I apologize ahead of time. First please visit this site Skip through the intros and once you get to the main part of the site see how u can click any where on the page and it loads a nav bar. How would I go about doing that?
 
well, make your nav thing. and make it a movie clip. right click on that movie clip, then go to actions, and put the following:

onClipEvent (mouseDown) {
setProperty (_root.yourNavBarName, _visible, true);
startDrag (this, true);
}
onClipEvent (mouseMove) {
stopDrag ();
}

then go to the first frame of this movie, and right click on it then go to actions and put the following:

setProperty (_root.yourNavBarName, _visible, false);

now you'll have to give your nav bar an instance name. so right click on it and to to panels>instance, then in the panel that pops up give it the name "yourNavBarName". and that should do the job.

not knowing is an excuse for those umwilling to lern -- John Rueben
 
For some reason I can't get that to work. Could you make me an example? Also How can I put buttons in to a mc and have it goto frame if the buttons are not in the main scene?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top