FileDocCategorySizeDatePackage
PlaySound.javaAPI DocExample308Sat Sep 09 20:33:16 BST 2000None

PlaySound

public class PlaySound extends Applet

Fields Summary
Constructors Summary
Methods Summary
public voidinit()

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