Not working in IE?
Put all of your variables in the object tag into quotes. Make sure the source matches in the Object and Embed tags. Also, you're missing param tags. Try this:
HTML Code:
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="310" height="24" id="audioplayer2" align="middle">
<param name="allowScriptAccess" value="sameDomain" />
<param name="allowFullScreen" value="false" />
<param name="wmode" value="transparent">
<param name="movie" value="MP3/player.swf" />
<param name="quality" value="high" />
<param name="bgcolor" value="#000000" />
<embed name="audioplayer2" src="MP3/player.swf" width="310" height="24" align="middle" autostart="false" pluginspage="http://www.adobe.com/go/getflashplayer" quality="high" allowscriptaccess="sameDomain"></embed>
</object>
And, if you are just embedding a straight MP3 file:
HTML Code:
<OBJECT DATA="MP3/zz.mp3" TYPE="audio/mpeg" width="310" height="24" id="audioplayer2" align="middle">
<PARAM NAME="autostart" VALUE="false" />
<PARAM NAME="hidden" VALUE="false" />
<EMBED src="MP3/zz.mp3" autostart="false" hidden="false" width="310" height="24" id="audioplayer2" align="middle"></EMBED>
</OBJECT>