Monday, February 22, 2010

Controlling MovieClip Timelines!

Your event handler will look something like this:

function onYourButtonClick(event:MouseEvent):void
{
 startPage.gotoAndStop(2);
}

If you wanted to control a clip within a clip, use dot notation!

startPage.cuteMovie.gotoAndPlay(30);

No comments: