Log in

View Full Version : css menu problem with flash content



sti555
01-09-2009, 01:37 PM
Hi i am using the http://www.dynamicdrive.com/style/csslibrary/item/jquery_multi_level_css_menu_2/ menu in my content it is working so good but i have flash content under the menu when submenus opened the menu it seem under the flash content how can i solve this.?

i choose the z-flow=2 for the div which includes menu but still i have problem with flash
thanks for helps

Snookerman
01-09-2009, 01:40 PM
Try adding this parameter:

<param name="wmode" value="transparent">
and add this attribute to the embed tag:

wmode="transparent"

Good luck!

sti555
01-09-2009, 01:48 PM
i did like this but i have still problem and this problem is only in ie7

<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="517" height="208" title="orta">
<param name="movie" value="ta.swf" />
<param name="wmode" value="transparent">
<param name="quality" value="high" />
<embed src="ta.swf" quality="high" wmode="transparent" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="517" height="208"></embed>
</object>
</noscript>

Snookerman
01-09-2009, 01:54 PM
Instead of "z-flow" use z-index.

jscheuer1
01-09-2009, 01:57 PM
Your code only shows what users without javascript enabled will get. What script are you using for all the rest? You need to pass the parameter and the attribute to it.

If you want more help:

Please post a link to the page on your site that contains the problematic code so we can check it out.

sti555
01-09-2009, 01:58 PM
yes it has been z-index i wrote wrong,what can we do another?

sti555
01-09-2009, 01:59 PM
......

jscheuer1
01-09-2009, 02:05 PM
Add it to your script call (scroll the code block to see the highlighted addition):


<script type="text/javascript">
AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','wmode','transparent','width','517','height','208','title','orta','src','http://www.hayatnet.com/media/orta','quality','high','pluginspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','movie','http://www.hayatnet.com/media/orta' ); //end AC code
</script>

sti555
01-09-2009, 02:07 PM
thank you very much it's ok now,
regards