Hallo zusammen,
stieg gerade von IE auf FF Browser um.
Eingebettete mp3's funzen nicht, hier der Quelltext.
Könnte es eine Lösung geben?
Danke
<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(); ">Musik </a> - -
<A HREF="javascript:document.thesound.stop()"> Stille </a>
<EMBED SRC="bg_sound.mp3" HIDDEN AUTOSTART="true" loop="30" MASTERSOUND NAME="thesound" width="0" height="0">