Button in a Movie Clip

I’ve got a button embedded within a movie clip. How do I get the button’s action to refer to the root timeline? (When released, I need the button to move on to Frame #2 of the main timeline.)

I’m still a rookie. Thanks!

D

Apply an action similar to this to the button:[AS]on (rollOver){
_root.gotoAndPlay (2);
}[/AS]

_root refers to the main timeline

Excellent!

Thanks bro :slight_smile: