Frodo: Embed-Source kann nicht abgespielt werden

Beitrag lesen

Hi, Gernot!
Wie gesagt, die Situation ist alles andere als befriedigend !
Dies war mein Ansatz, der wie gesagt nur im MSIE klappt und eigentlich eine eigenmächtige Microsoft Javascript-Erweiterung darstellt:

<html><head><title></title>
<style type="text/css">
embed { position:absolute;top:-100px; }
</style>
<script type="text/javascript">
function music (x)
{  window.document.embeds[x].play();  }
function stopmusic ()
{  window.document.embeds[0].stop();
 window.document.embeds[1].stop();
 window.document.embeds[2].stop();  }
</script>
</head><body>
<embed src="wlds.mp3" hidden="true" autostart="false" loop="false" name="wlds">
<embed src="agsm.mp3" hidden="true" autostart="false" loop="false" name="agsm">
<embed src="wabf.mp3" hidden="true" autostart="false" loop="false" name="wabf">
<a href="javascript:music (0)">link</a><br>
<a href="javascript:music (1)">link</a><br>
<a href="javascript:music (2)">link</a><p>
<a href="javascript:stopmusic ()">stop</a>
</body></html>

Gruß Frodo