Controling mc

First of all, thanks for all the help.
U´ve being great!

My q is…

How do I make a button to control a mc to start playing?

thanks

in the buttons actionscipt use:

[AS]
on(release) {
_root.movieclip.play();\assuming that the movieclip is located on the main timeline of the movie.
}[/AS]

[where “movieclip” is the instance name of the movie you want to play]

give your MC an instance name and then use this code on the button

on (release) {
MCinstancename.gotoAndPlay (2);
}

yeah, what he said… hahahha :wink: