Hello,
Can someone point out where the javadoc for AudioPlayer.player is?
This is the code I currently have...
import sun.audio.*;
import java.io.*;
...
...
...
InputStream input = new FileInputStream("Stop.wav");
AudioStream sound = new AudioStream(input);
AudioPlayer.player.start(sound);
If there is no loop method for this, what's the easiest way to go about creating a looping method for AudioStream?