I havent used AS2 for long time. TOday I try a simple code like below code that but it stop in frame s rather than play in the movieclip. It looks like the function "gotoAndStop" but I type gotoAndPlay. so I wonder whether I miss any setting for it?
In the movie clip
onClipEvent (enterFrame) {
this.gotoAndPlay("s");
}
Inside MC, I add "stop" in frame 1 and set frame name "s" in frame 2.
Last edited by multioscar; 10-16-2009 at 12:05 AM.
i dont really know what your asking but i can see that you have your gotoAndPlay script in an onEnterFrame function, meaning that the program will loop that gotoAndPlay, making it act like a gotoAndStop. if you want to fix that use onClipEvent(load){ or put the code in the main timeline, mc_name.gotoAndPlay("s");