Ho seguito le dritte per la gestione suoni ma non mi funziona, dovrebbe essere compatibile con IE e Mozzilla...ma nulla !
codice:<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <title>Documento senza titolo</title> <script language="JavaScript"> document.nomeembed.play(); //fa partire il nostro embed di nome nomeembed document.nomeembed.stop(); //naturalmente stoppa il nostro embed! function stop() { document.myembed.stop(); } function play() { document.myembed.play(); } </script> <embed src="music.mp3" autostart="true" loop="true" name="mymidi"> </head> <body> <table border="0" cellspacing="0" cellpadding="4"> <tr> <td><p align="center">stop</p> </td> <td><p align="center">play</p> </td> </tr> </table> </body> </html>