Sound Button!

Hey all i need a button, which on click stops the music which is already playing, but then on click again, starts the music off again, is this possible, if it is can someone show me the actionascript or what is needed for this to be accomplished?

Thanks!
Matt

Check out www.kennybellew.com :slight_smile:


my_btn.onRelease=function(){
stopAllSounds();
};
//
my_Other_btn.onRelease=function(){
my_sound =new Sound();
my_sound.loadSound("myMp3.mp3",true);
};
//streams the mp3 from the server ..

hope this helps …
cheers