Calling MC from main. pls HELP

hello . how can i call from my first scene ( on main timeline ) a movie clip to play./

example : when i run my movie i wan it to on frame 20 ( for example ) i want it to stop and to call the MC to play.
thanks :hair:

On the frame that has the stop action, place a similar script like this:[AS]_root.myMC.play();[/AS]

_root refers to the main timeline and “myMC” is the instance name of that movieclip you want to play. That’s basically it. =)