At 3/17/09 09:44 AM, crazymusicman2k7 wrote:
Just a quick one however does anyone know of any other HTML code other than "<param name="wmode" value="transparent">" that makes the flash background transparent?
Firefox
Opera
Safari etc....
IIRC, IE uses the OBJECT tags and Firefox uses the EMBED tags for parameters. So make sure your wmode="transparent" is in both the embed and object tags, eg:
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="900" height="550">
<param name="movie" value="Equilibrium_10.swf">
<param name="quality" value="high">
<param name="wmode" value="transparent">
<embed src="Equilibrium_10.swf" width="900" height="550" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" wmode="transparent"></embed>
</object>
Not sure whether you added the parameter manually to the code, but if you select the swf in Design view in DW, you can add parameters using the Properties bar, which will automatically add them to both the object and embed tags
