Hmm. I need some help. :)

Okay, I have a question, and I hope that I can explain it well.

Inside of a movie clip, I have a button with this action:

docs.addEventListener(MouseEvent.MOUSE_DOWN, mouseDownHandlerdocs);
function mouseDownHandlerdocs(event:MouseEvent):void {
    gotoAndStop(5);
}

The thing is, I need it to go to frame 5 of Scene 1, not frame 5 of the movie that the button is in. Does that make sense?

Any help would be appreciated.

Erin