Questo codice, sulla _root, funziona (l'ho scritto or ora).

codice:
mySound = new Sound(this);
mySound.attachSound("music");
mySound.start(0, 999);
playing = true;

playBtn.onPress = function(){
	if(!playing){
		mySound.start(0, 999);
		playing = true;
	}	
};

stopBtn.onPress = function(){
	if(playing){
		mySound.stop();
		playing = false;
	}
};