Hello World!
Im doing a simple program that runs a JFrame and has some JButtons etc etc but id like to put a simple sound to one of my buttons, when i quit the program i want it to play a simple melody how can i put it in this simple button? this is where id like to put it but i cant find how to put in in there:
public class quitHandler implements ActionListener{
public void actionPerformed(ActionEvent ae){
/*here i guess i should put some kind of method or something*/
System.exit(0);
}
}