I am able to play sounds in my Java Swing application right now usind JavaSound and code from Java play WAV sound file. What I currently want to do is:
Play a sound; after the sound is finished I want to play another sound (which is the action). So basically, in steps:
- Play a sound. (I know how long this sound takes - 4 seconds).
- After end of sound.
- Perform action (e.g. play another sound).
I tried several options, delays, threads but couldn’t figure it out.