ponendo come file esterno "mioMP3.txt" che deve essere compilato così
codice:
&musica=percorso/nomefile.mp3&
l'AS da utilizzare è
codice:
myVars = new LoadVars();
myVars.onLoad = function(success){
	if(success){
		mySound = new Sound();
		mySound.loadSound(myVars.musica, true);
		mySound.onSoundComplete = function(){
			this.start();
		}
	} else {
		trace ("errore");
	}
}
myVars.load("mioMP3.txt");