How to tell the main timeline go to and play

Hi.

I’ve in the main scene 2 layers one with button that fill all the stage and the other layer contain the movie clip.

In the movie clip I’ve a couple of buttons and I would like to give a command that if the cursor roll over on one of the buttons it’ll tell the main scene (timeline, not in the movie clip) go to and stop frame 2.

on (rollOut) {
tellTarget (“my movie”) {
gotoAndStop (1)
}
}
on (rollOut) {
_root.gotoAndPlay(“Scene 1”, “2”);
}

Could you please help me?

Thank you. :block: