Need some help here…
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?
Need some help here…
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 ?
:: Copyright KIRUPA 2024 //--