Log in

View Full Version : Wmode Transparent



GoBlueFan9
03-20-2011, 01:02 PM
I have posted this question before about the issue with DD Smooth Menu working in Internet Explorer, Chrome and Safari and Flash. I thought that i had resolved the issue however, I have not. I have posted below the script for my .swf file on the website http://coreydamenjenkins.com

Please help me figure out what my issue is here:


<div id="index">
<script type="text/javascript">
AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','width','900','height','445','title','construction','base','.','src','http://coreydamenjenkins.com/index/slideshow/slideshow','quality','high','pluginspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','movie','http://coreydamenjenkins.com/index/slideshow/slideshow' ); //end AC code
</script><noscript><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="900" height="445" title="construction">
<param name="wmode" value="transparent" />
<param name="movie" value="http://coreydamenjenkins.com/index/slideshow/slideshow.swf" />
<param name="quality" value="high" />
<embed src="http://coreydamenjenkins.com/index/slideshow/slideshow.swf" quality="high" wmode="transparent" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="900" height="445"></embed>
</object></noscript>
</div>


Thank you,
Dan

jscheuer1
03-20-2011, 02:13 PM
It needs 'wmode','transparent', in the AC_FL_RunContent function:


<div id="index">
<script type="text/javascript">
AC_FL_RunContent( 'wmode','transparent','codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','width','900','height','445','title','construction','base','.','src','http://coreydamenjenkins.com/index/slideshow/slideshow','quality','high','pluginspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','movie','http://coreydamenjenkins.com/index/slideshow/slideshow' ); //end AC code
</script><noscript><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="900" height="445" title="construction">
<param name="wmode" value="transparent" />
<param name="movie" value="http://coreydamenjenkins.com/index/slideshow/slideshow.swf" />
<param name="quality" value="high" />
<embed src="http://coreydamenjenkins.com/index/slideshow/slideshow.swf" quality="high" wmode="transparent" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="900" height="445"></embed>
</object></noscript>
</div>