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
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
OK and thanks.
:: Copyright KIRUPA 2024 //--