[Beschreibung]
Beispiel, wie man mit Grafiken anstelle der Standardcontrols eine Lautstärkeregelung für Midi o.ä. realisieren kann.
[Kompatibilität]
[Code]
<script language="JavaScript" SRC="Radio.js"></SCRIPT>
id="audioObject" classid="CLSID:05589FA1-C356-11CE-BF01-00AA0055595A" width="0" height="0"> <param name="FileName" value="canyon.mid"> <param name="Volume" value="-2000"> </object> <br> <!-- Beschreibung: Bei mouseover auf laut u. leise werden die Bilder gewechselt Bei mousedown auf laut oder leise wirds lauter oder leiser Bei click auf Home wird die Function einaus()aus Radio.js gestartet um den Sound ein- oder auszuschalten und die Function test() aus Radio.js um das Bild zu wechseln --> <table> <tr> <td valign="bottom" align=left rowspan=3><!-- --><a href="#"><img src="m_menuselectup.gif" width="32" height="37" border="0" alt="Volume+" onmouseover="javascript:this.src='m_menuselectuplight.gif'" onmouseout="javascript:this.src='m_menuselectup.gif'" onMousedown="zeitaus_laut()" onMouseup="window.clearInterval(lauter)"><br><!-- --><a href="#"><img src="m_menuselectdown.gif" width="32" height="37" border="0" alt="Volume-" onmouseover="javascript:this.src='m_menuselectdownlight.gif'" onmouseout="javascript:this.src='m_menuselectdown.gif'" onMousedown="zeitaus_leise()" onMouseup="window.clearInterval(stumm)" ><br><!-- --><a href="#" onclick="einaus();test()"><!-- --><img src="m_menuhome.gif" width="32" height="18" border="0" alt="POWER" ></a> </td valign=bottom> </tr> </table>
Micha Doe