// Aucun son : retour
if(soundCombo.getSelectedIndex() == 0)
return;
try {
SoundPlayer sp = new SoundPlayer();
String selectedSound = soundCombo.getSelectedItem().toString();
String soundFile = sp.SOUNDS.get(selectedSound);
sp = new SoundPlayer(soundFile);
sp.play();
} catch(Exception e) {e.printStackTrace();}
}//GEN-LAST:event_playSoundLabelMouseClicked