Music start stop actionscript

On my FMX animation I have 2 buttons. One to start and one to stop the music. Could anyone give me the Actionscript to make this happen?

Many thanks
Magyar

startbutton.onRelease = function(){
yourSound.start(0,999);
}
stopbutton.onRelease = function(){
yourSound.stop();
}

Have a look at www.kennybellew.com too :slight_smile:

OK and thanks.