Ciao a tutti!

Nel mio filmato carico dei loop esterni tramite questo script:

codice:
fadeIn = true;
var mySound = new Sound(); 
mySound.loadSound("musica/suono.mp3");
mySound.start(0, 300);
this.onEnterFrame = function() {
	if (fadeIn) {
		mySound.setVolume(volume);
		volume += 2;
		if (volume>99) {
			fadeIn = false;
		}
	}
	if (fadeOut) {
		mySound.setVolume(volume);
		volume -= 2;
		if (volume<1) {
			mySound.loadSound("musica/suono.mp3", false);
			fadeOut = false;
		}
	}
};
Bin.onRelease = function() {
	fadeIn = true;
	mySound3.start(0, 300);
	
};
Bout.onRelease = function() {
	fadeOut = true;
};
Per il fadeOut me lo fa e nn ci sono problemi...quando avviene il fadeIn prima mi parte la musica poi sparisce subito e parte il fadeIn...si sente un stacco di musica nn molto gradevole perchè embra che salti e poi riparta sfumando!

COsa cè che sbaglio nel caricamento dell'MP3? :master:

Grassie a tutti in anticipo