Blog Schröder

Sammlung von Codeschnipseln zu Programmierproblemen.
Daten aus fremden Quellen unterliegen deren Rechten.
Siehe auch: Disclaimer auf www.computer-schroeder.de

Dienstag, 28. Oktober 2008

Audio-Applet

<html><head>

<title>AudioBox Sample</title></head><body>


<applet code="AudioBox.class" name="AudioBox" width=5 height=5>
<param name="ab0" value="sonar.au#babam.au#">
</applet>


<p>Press a button to play a sound.  Sounds will composite when overlapped.
<form>
   <input type="button" value="Sonar" onClick="AudioBox.playSoundtrack('sonar.au')">
   <input type="button" value="Babam" onClick="AudioBox.playSoundtrack('babam.au')">
</form>
Download: http://javaboutique.internet.com/AudioBox/
</body></html>

Labels: , , , , , ,