Button inside movieclip problemo

Again I face another problem;

I’ve got a movieclip “games_mc” and inside that mc I’ve got another mc “supermaze_mc”.
The “supermaze_mc” is a game, and it’s not working properly. Or the buttons aren’t.
On the first frame in the “supermaze_mc” I have a menu with several buttons such as play,instructions etc. When I click on the play-button I want to get to frame nr. 30 in the same mc (supermaze_mc). But that doesn’t work when I test the movie. (The other buttons on the menu doesn’t work either)

I now have this code on my play button.

on (release) {
    gotoAndStop(30);
    
}

I have also tried to give my “supermaze_mc” an instance name and used this code: myinstance.gotoAndStop(30); but it failed aswell.

I was sure I did it all right, but I can see somethings wrong. Do anyone know what is wrong and/or what I need to do?

(geez, that turned out to be a lot more than I thought)

Thanks:)

Try using relative paths. e.g.

_parent.gotoAndStop(30);

try

on(release){_parent.gotoAndPlay(30);}

or

on(releaase){this.gotoAndPlay(30);}

Dang I am slow this morning! :stuck_out_tongue:

[COLOR=Black]_parent.[/COLOR][COLOR=#0000ff][COLOR=Black]gotoAndStop[/COLOR] [COLOR=Red]<33[/COLOR]

[COLOR=Black] Thanks guys[/COLOR]:D:D
[/COLOR]