flash gotoAndPlay(variable);
flash gotoAndPlay(variable);
Out of context: Reply #7
- Started
- Last post
- 10 Responses
- autonoma0
You cannot pass variables within the goToAndPlay. you have to do:
function myGoTo() {
myMovieClip.myVariable = "noodle";
myMovieClip.gotoAndPlay(2);
}