Friday, October 10, 2008

Stop Music

Some people were saying they couldn't find out how to stop the music when restarting their e greeting.

Here's my action script for the play again button:

stop();

playagain.addEventListener(MouseEvent.MOUSE_DOWN, playplay);

function playplay (event:MouseEvent):void {
flash.media.SoundMixer.stopAll();
gotoAndPlay ( 1, "Scene 1" );
}


The script highlighted in red is what I wrote to stop the music when replaying the flash movie.

No comments: