I have a main navigation bar on my main stage that is constant through out. I have converted the bar to a movie clip. How do i then tell the movie clip to look at the main stage, not inside the mc, when a button/mouse event is clicked.
This is what i have.
stop();
name_btn.addEventListener(MouseEvent.CLICK, enterMovie);
function enterMovie(myEvent:MouseEvent):void{
gotoAndPlay(3);
}