Hello. My problem is actually quite sad really...
I've created a movie clip. This clip acts sorta like a button, as I made it open and close with this code:

_root.playbutton.onRollOver = function() {
this.gotoAndPlay(1);
};


And To close:

_root.playbutton.onRollOut = function() {
this.gotoAndPlay(7);
};


It expands and closes, but now I need it to go to the second frame of the movie when I click on it.

I've tried this:

on (release) {
gotoAndPlay(2);
}

But every time I do that it plays the button/movieclip thing
Is there a global variable for the whole movie?

Lastly, I already started the game, so what's the best way to make a loader for it?

Thanks,

Xen Element