How to Play and Stop Sound in Flash ActionScript 3

You may searching a solution for how to play and stop sounds in Flash ActionScript 3, play and stop button in flash, how to stop audio in flash, how to stop audio in flash cs5 or how to stop audio in flash cc, stop all sound as3, Actionscript 3 stop sound on frame. all of this questions solutions are below. Hope you will enjoy.

You can load and play sound file from your storage by below code:

var yourSound:Sound = new Sound();
var yourChannel:SoundChannel = new SoundChannel();
yourSound.load(new URLRequest("your-sound-file.mp3"));
yourChannel = yourSound.play();

you can stop your sound by placing in a timeline frame or click a button or object using this simple code.

yourChannel.stop();

If you have any question please write in a comment.

Comments

comments