Nieuw lid |
|
Hallo
Ik had en vraagje ik kan dit script 1x gebruiken op een pagina...
Maar ik wil het meerde x op een pagina gebruiken...
Hoe doe ik dat...?
Alvast bedank, Mvg Mahmood
<SCRIPT LANGUAGE="JAVASCRIPT">
n = (document.layers) ? 1:0
ie = (document.all) ? 1:0
function play_sound() {
if (n) document.thesound.play(false)
if (ie) {
document.thesound.stop()
document.thesound.play()
}
}
function stop_sound() {
document.thesound.stop()
}
</SCRIPT>
<!-- --><A HREF="javascript:play_sound(); ">play</a> <A HREF="javascript:document.thesound.stop()">stop</a><EMBED SRC="http://www.your-url.mid" HIDDEN=TRUE AUTOSTART="false" MASTERSOUND NAME="thesound"><!-- -->
<SCRIPT LANGUAGE="JAVASCRIPT"> n = (document.layers) ? 1:0 ie = (document.all) ? 1:0 function play_sound() { if (n) document.thesound.play(false) if (ie) { document.thesound.stop() document.thesound.play() } } function stop_sound() { document.thesound.stop() } </SCRIPT> <!-- --><A HREF="javascript:play_sound(); ">play</a> <A HREF="javascript:document.thesound.stop()">stop</a><EMBED SRC="http://www.your-url.mid" HIDDEN=TRUE AUTOSTART="false" MASTERSOUND NAME="thesound"><!-- -->
Citaat: Siliecom14's edit:
Code tags gebruikenÂ
|