> Jeg vil høre om nogle koden til at få baggrundsmusik på i
> firefox, evt så man også kan stoppe/starte musik :)
Har omskrevet jeg fandt på nettet
<title>Musik på siden</title>
<SCRIPT LANGUAGE="JavaScript">
var audioPlaying = false;
window.onerror = handleError;
function handleError( errType, errURL, errLineNum )
{
window.status = "Error: " + errType + " on line " +
errLineNum;
return true;
}
function toggleaudio( b )
{
audioPlaying = !audioPlaying;
b.value = audioPlaying ? "pause" : "afspil";
audioPlaying ? audioPlayer.Play() : audioPlayer.Pause();
}
</script>
</head>
<body>
<INPUT NAME="audio" TYPE="button" VALUE="play background music"
ONCLICK="toggleaudio( this )"></p>
<TABLE align="center">
<TR><TD VALIGN="top" ALIGN="center">
<OBJECT ID="audioPlayer" WIDTH=0 HEIGHT=0
CLASSID="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95">
<PARAM NAME="FileName" VALUE="
http://www.buur.info/Wage.mp3"> <!--
sti til musikfilen her -->
<PARAM NAME="AutoStart" VALUE="false">
<PARAM NAME="ShowControls" VALUE="false">
<PARAM NAME="Loop" VALUE="true">
</OBJECT></TD>
</TR>
</TABLE>
</body>
Ved ikke om min kode korrekt, men den virker da