WEBSITE: andthelightsaid.com
I'm using the standalone wp audio player and my new code is not yet in the online website. It works fine in testing with the ie browser but not in firefox.
CODE FOR USING THE BROWSER
<script type="text/javascript" src="audio-player.js"> </script>
<script type="text/javascript">
AudioPlayer.setup("player.swf", {
width: 260,
});
</script>
CODE FOR POSITIONING THE PLAYER/CONTROLS
#music1div {
display: block;
height: 40px;
width: 260px;
position: absolute;
top: 342px;
left: 875px;
z-index: 2;
}
CODE FOR SETTING INITIAL ATTRIBUTES AND HREF FOR THE CONTROLS DIV
<div id="music1div" class = "hide"> <p id="music1"><a href="p024m1.mp3">Play beginning</a></p>
</div>
CODE FOR DISPLAYING THE CONTROLS
document.getElementById("music1div").className = "music1div";
AudioPlayer.embed("music1", {soundFile: "p024m1.mp3"});
That should cover it. Hopefully you've seen something like this before. Thanks for your rapid response.