codice:
//track1 deve stare nella libreria

mysound = new Sound()
mysound.attachSound("track1")
mysound.setVolume(80)
mysound.start(0,100)

musica=true

pulsante.onPress=function(){
      musica=!musica
      if(musica){mysound.stop();this.testo="Click to Play Music"}
      if(!musica){mysound.start(0,100);this.testo="Click to Stop Music"}
      
}

Ciao