codice:
mySound.loadSound(directoryMP3_param + mp3Names_param[p], false);

this.biografia_mc.onPress = function ()
{
	if(riproduzione){
		mySound.start();
	} else {
		mySound.stop();
	}
	riproduzione = !riproduzione;
};