|
User Details |
message
|
|
Kehaulani Kekoa
post date:
2011-03-01 16:37:43
|
On the site: http://www.brodyberman.com/dev/default.shtml
I have a drop down for the site navigation. On the homepage I have a flash piece. When I scroll over the menu the drop down is in back of the flash. I tried many snippets of code to try and get it to work properly... no luck.
I only see this on my PC in explorer. My mac it looks good.
|
|
|
Andrei Rinciog [Extend Studio]
post date:
2011-03-02 10:16:05
|
Hello,
Please use wmode transparent parameter on the Flash movie.
You can find help here: http://kb2.adobe.com/cps/142/tn_14201.html
Regards,
Andrei Rinciog
|
|
|
Kehaulani Kekoa
post date:
2011-03-02 11:53:17
|
I have tried this step already and still no luck. I pasted the code below.
<script type="text/javascript">
AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','width','620','height','203','title','Brody Berman','src','brodyberman-new2','quality','high','pluginspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','movie','brodyberman-new2' ); //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="620" height="203" title="Brody Berman">
<param name="movie" value="brodyberman-new2.swf" />
<param name="quality" value="high" />
<param name="wmode" value="transparent">
<embed src="brodyberman-new2.swf" quality="high" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="620" height="203" wmode="transparent"></embed>
</object></noscript>
|
|
|
Andrei Rinciog [Extend Studio]
post date:
2011-03-03 06:19:40
|
Hello,
Place that parameter in the AC_FL_RunContent function as well:
AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','width','620','height','203','title','Brody Berman','src','brodyberman-new2','quality','high','pluginspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','movie','brodyberman-new2','wmode','transparent' );
Tell me if it works.
Regards,
Andrei Rinciog
|
|
|
Kehaulani Kekoa
post date:
2011-03-03 09:55:44
|
|
That seemed to solve the problem. Thanks!!!
|
|