Bene, sono contento 
Cmq il codice che ho postato in precedenza non era molto corretto, non disabilitava i bottoni intanto che era in riproduzione la musica e in certi casi aveva strani comportamenti...
Cambialo con questo qui sotto [adesso la prima colonna parte da sola e ho aggiunto anche uno stop]:
codice:
stop();
s0 = new Sound();
s0.loadSound("music1.mp3", true);
s0.onSoundComplete = function() {
s0.loadSound("music1.mp3", true);
};
pulsante1.enabled = false;
pulsante1.onRelease = function() {
s1 = new Sound();
s2=s3=s0=false;
s1.loadSound("music1.mp3", true);
s1.onSoundComplete = function() {
s1.loadSound("music1.mp3", true);
};
this.enabled = false;
pulsante2.enabled = true;
pulsante3.enabled = true;
off.enabled = true;
};
pulsante2.onRelease= function() {
s2 = new Sound();
s1=s3=s0=false;
s2.loadSound("music2.mp3", true);
s2.onSoundComplete = function() {
s2.loadSound("music2.mp3", true);
};
this.enabled = false;
pulsante1.enabled = true;
pulsante3.enabled = true;
off.enabled = true;
};
pulsante3.onRelease= function() {
s3 = new Sound();
s1=s2=s0=false;
s3.loadSound("music3.mp3", true);
s3.onSoundComplete = function() {
s3.loadSound("music3.mp3", true);
};
this.enabled = false;
pulsante1.enabled = true;
pulsante2.enabled = true;
off.enabled = true;
};
off.onRelease = function() {
s0=s1=s2=s3=false;
this.enabled = false;
pulsante1.enabled = true;
pulsante2.enabled = true;
pulsante3.enabled = true;
};
Dimmi se funziona,