Help needed with buttons

I made a button using a movieclip and the rewind command, for RollOver and RollOut effects. The problem is, I want to navigate to another frame on the main stage by clicking on the movieclip. However, when I insert something like a Goto command, it will move the frame of the movieclip, not the main stage.

I hope I was clear enough, and thanks in advance.

Edit: Okay, I added

intro_mov_btn.onPress = function() {
gotoAndStop(2);
}

to a frame. It seems to work now. Is there a more simple AS? It seems kind of farfetched for just this…