gotoAndPlay doesn't seem to work for load MC

Need some help here…:frowning:

how can i play a movie when i click on a button?

gotoAndPlay doesn’t seems to work…

or will it be better if i do it in scenes? 1 button link to 1 scene?

if you just want to play the movie that the button is in, do like this:

[AS]
on (release) {
play();
}
[/AS]

if you want to play an external swf, do like this:
[AS]
on (release) {
_root.attachMovie(“yourmovie.swf”);
}
[/AS]

What movie do you want to play exactly, and where are that movieclip and the button located ?