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