This content has been marked as final.
Show 2 replies
-
1. Re: Animation on One Frame? in Flash CS4(AS3)
Rob Dillon Oct 9, 2009 5:35 AM (in response to Me2LoveIt2)Sure just use the instance name of the movieClip that you want to address. Something like this:
button1.addEventListener(MouseEvent.MOUSE_UP,button1Up);
function button1Up(event:MouseEvent):void {
movieClipName.gotoAndPlay(3);
// or something else...
}
substitute the actual clip name for "movieClipName" in the function above.
-
2. Re: Animation on One Frame? in Flash CS4(AS3)
Me2LoveIt2 Oct 9, 2009 8:59 AM (in response to Rob Dillon)Thanks a lot, I will experiment with that and probably come up with some more questions.


