Back To Start Of Archive
Taken From The Forum: Help & Support for DHTML Menu Version 5+
Forum Topic: Click to view post
Last Updated: Saturday July 14 2012 - 06:07:03
Submenus hide behind Flash elements on a Mac
Poster: andrusito
Dated: Monday June 12 2006 - 17:50:56 BST
Hi.
users report they canĀ“t see submenus because they hide behind Flash elements.
They are using Mac OS X Version 10.4.6
Browser Safari version 2.0.3
It works perfect on IE and FF using Win XP
page is located here
http://www.aliento.com/index.php
Thank you for your help.
Andres.
Poster: Ruth
Dated: Monday June 12 2006 - 20:17:32 BST
Hi,
I think you need to use another parameter in the flash
Code:
<param name="WMode" value="Transparent">
Try that.
Ruth
Flash editor
Poster: frederth
Dated: Tuesday June 13 2006 - 3:49:28 BST
My submenus are hiding behind flash objects in Mac OSX 10.4.6. I hate to sound ignorant, but how do I edit the flash elements to add the parameter suggested above???
Poster: Ruth
Dated: Tuesday June 13 2006 - 18:13:14 BST
Hi,
Code:
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="277" height="222">
<param name="movie" value="home/tour_fechas_mayo2006.swf">
<param name="quality" value="high">
<PARAM NAME="wmode" VALUE="opaque">
<embed src="home/tour_fechas_mayo2006.swf" quality="high" wmode=transparent pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="277" height="222"></embed>
</object>
<param name="movie" value="home/tour_fechas_mayo2006.swf">
<param name="quality" value="high">
<PARAM NAME="wmode" VALUE="opaque">
<embed src="home/tour_fechas_mayo2006.swf" quality="high" wmode=transparent pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="277" height="222"></embed>
</object>
Note that in the param name has "wmode" value="opaque" and the EMBED tag has the wmode="transparent" in it, try it that way and if it doesn't work, then change ="opaque" to transparent the same as the embed tag.
Ruth