thanks to both of you i will read about the formatting thing in a minute. Here is from the API
getAudioClip
public AudioClip getAudioClip(URL url,
String name)
Returns the AudioClip object specified by the URL and name arguments.
This method always returns immediately, whether or not the audio clip exists. When this
applet attempts to play the audio clip, the data will be loaded.
Parameters:
url - an absolute URL giving the base location of the audio clip.
name - the location of the audio clip, relative to the url argument.
Returns:
the audio clip at the specified URL.
See Also:
AudioClip
however if you click on the links for AudioClip it takes you to the AudioClip interface so I was confused. It is still somewhat confusing since an AudioClip object doesnt belong to a class AudioClip(since there is no such class). How is an AudioClip object made if there is no constructor defined for it?