I've been creating a Java project where I'd like to have multiple sounds playing at once, and how to control each sound's volume and panning. I've Googled around and read about 3 different ways; the thing is, I can't seem to find any tutorials or examples of how to use them. They are:
import java.applet.AudioClip;
import javax.sound.sampled;
import sun.audio.SomethingOrOther; // Sorry, don't recall off-hand. It was an "un-documented" site
As I continued to read, I found out that AudioClip was only for a certain kind of applciation ("applet"?) and the third one was only mentioned on one of a hundred sites. The second one was brought up on this site, but it dealt with a different topic altogether (something about "lines"). Anyway, I'm familiar enough with Java syntax to get the idea, but I haven't been able to find anything presented in a straight-forward way; so if anyone could point me in the right direction on this it would be greatly appreciated.