You have an error in your coding. The wmode parameter should be set to transparent, not window. Otherwise, any DHTML menus will drop behind the mp3 player.
Quote:
Originally Posted by Orakk
To get this to work in IE code below is working for us.
Code:
<!-- Embed Player -->
<vb:if condition="$attachment[attachmentextension] == mp3">
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" align="middle" height="27" width="400">
<param name="quality" value="best">
<param name="allowScriptAccess" value="never">
<param name="wmode" value="window">
<param name="movie" value="http://www.google.com/reader/ui/3247397568-audio-player.swf?audioUrl=attachment.php?{vb:raw session.sessionurl}attachmentid={vb:raw attachment.attachmentid}&d={vb:raw attachment.dateline}" flashvars="playerMode=embedded" />
<embed type="application/x-shockwave-flash" src="http://www.google.com/reader/ui/3247397568-audio-player.swf?audioUrl=attachment.php?{vb:raw session.sessionurl}attachmentid={vb:raw attachment.attachmentid}&d={vb:raw attachment.dateline}" width="400" height="27" allowscriptaccess="never" quality="best" bgcolor="#ffffff" wmode="window" flashvars="playerMode=embedded" />
</object>
</vb:if>
<!-- /Embed Player -->
|