sequential playback of audio files

Need help in implementing sequential playback of sampled audio files.

The task is a simple word-based speech generation; got a number of audio files and a need to play the certain ones in the certain order after clicking the button with a possibility of repetitive playback.

I would extremely appreciate a possibly detailed explanation, as I'm not that experienced in Java :)

[396 byte] By [Norwena] at [2007-11-26 18:21:24]
# 1
You might want to read over the Sound API if you haven't already: http://java.sun.com/docs/books/tutorial/sound/index.htmlIf you have, then I would suggest making your question more specific.
zadoka at 2007-7-9 5:55:16 > top of Java-index,Security,Cryptography...
# 2
For a simple solution look into http://java.sun.com/javase/6/docs/api/java/applet/Applet.html#newAudioClip(java.net.URL)and http://java.sun.com/javase/6/docs/api/java/applet/AudioClip.htmlYou don't need to create an applet to use these.#
duckbilla at 2007-7-9 5:55:16 > top of Java-index,Security,Cryptography...