Hola de nuevo
He probado el siguiente código a la perfección en Internet Explorer 6 y en Netscape 7:
Código PHP:
<html>
<head>
<title>Prueba de sonido</title>
</head>
<body>
<div id="fantasma"><embed src=exorcista.mid autostart=true hidden=true></div>
<script language="javascript">
function enciende(){
document.getElementById("fantasma").innerHTML = "<embed src=exorcista.mid autostart=true hidden=true>"
}
function apaga(){
document.getElementById("fantasma").innerHTML = "<embed src=exorcista.mid autostart=false hidden=true>"
}
</script>
<input type=button value="Encender" onClick="enciende()"><br><br>
<input type=button value="Apagar" onClick="apaga()">
</body>
</html>
El problema está en el Opera
, que no hay manera de hacer funcionar el botón de parada.
No me gustaría usar frames (nunca los uso) ni iframes (no todos lo reconocen) así que... ¿hay alguna forma de que funcione en Opera
?
Salu2