PDA

View Full Version : HTML drop down menu over flash


stuntdevil
12-09-2008, 10:24 PM
Hello.

I just built a drop down menu in fireworks and exported it to html.

I need the drop down menu to go over the flash banner which is directly under it.

How would i go about doing this? without redoing my site in css.

Thanks!

jasonJ
12-12-2008, 12:03 PM
I think you'll have to set your flash movie wmode parameter to transparent (or opaque).

stuntdevil
12-14-2008, 12:23 AM
I tried that, didn't work :(

stuntdevil
12-14-2008, 12:27 AM
This is my code:
<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="558" height="340">
<param name="movie" value="mainimage.swf"><br>
<param name=wmode value="transparent">
<param name="quality" value="high">
<embed src="mainimage.swf" quality="high"
wmode="transparent" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="558" height="340"></embed>
</object>

jasonJ
12-14-2008, 01:47 PM
How about this?

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

What OS and browser have you got?