FileDocCategorySizeDatePackage
PlaySound.javaAPI DocExample309Thu Apr 03 15:19:44 BST 1997None

PlaySound

public class PlaySound extends Applet

Fields Summary
Constructors Summary
Methods Summary
public voidinit()

  
    try {
      URL u = new URL(getCodeBase(), getParameter("sound"));
      play(u);
    }
    catch (MalformedURLException e) {
      System.err.println(e);
    }