PDA

View Full Version : bg transparency browser & platform compatibility



hroth
July 26th, 2007, 10:39 AM
Hi All,

I have embedded flash into a site with the background being transparent.
I noticed at home on my mac that it does not render as transparent, whereas
at work (on the PC's) it's fine. So, I was wondering if anyone knows what does
and does not support the transparent background. (Browsers and Platforms)

this is what I'm using for transparency:

<script type="text/javascript">
AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0',
'width','875','height','450','wmode','transparent' ,'src','http://www.website.ca/shop/','quality','high',
'pluginspage','http://www.macromedia.com/go/getflashplayer','movie','http://www.website.ca/shop/test' );
//end AC code
</script><noscript>
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0"
width="875" height="450" id="movie" align="middle">
<param name="allowScriptAccess" value="sameDomain" />
<param name="movie" value="test.swf" />
<param name="quality" value="high" />
<param name="bgcolor" value="#ffffff">
<param name="wmode" value="transparent">
<embed src="test.swf" quality="high" bgcolor="#ffffff" wmode="transparent" width="875" height="450" name="test" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
</object></noscript>