Ciao, ho il seguente codice:
on (release) {
loop = new Sound();
loop.loadsound("loop.mp3", true);
loop.onSoundComplete = function() {
};
}
on (release) {
_root.equalizzatore.gotoAndPlay(2);
}
con questo codice, applicato a un bottone, avvio un sound e contemporaneamte faccio partire un MC. Fin qui tutto bene.
Se adesso voglio fermare il sound (ricliccando sullo stesso bottone) riportando il MC su "gotoAndPlay(1), come faccio? Cosa bisogna aggiungere al codice?
In sostanza, mi serve un action (associata a un MC) che faccia PLAY e STOP al sound sullo stesso bottone!