I am making a game which has mouse over sound in the menu. However the 2nd time when the sound is played and the first one didn't finished yet the 2nd cuts the first. Is there any way to fix that issue?
public static AudioClip menuMouseOver; //creating the audioClip
menuMouseOver = Applet.newAudioClip(new File(soundsLocation+"\\menuMouseOver.wav").toURL()); //loading the sound into the audioClip
menuMouseOver.play(); //calling the audioClip to play.