Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Basically my problem is the site I am working on has a horizontal drop down menu and I am implementing a flash chart on the page.

When you hover over the menu the items drop down behind the flash chart and are unclickable. Can I get around this somehow?

share|improve this question

3 Answers

up vote 6 down vote accepted

Make sure you set the wmode to transparent for your flash content.

share|improve this answer
sweet, worked well – Luke Lowrey Apr 3 '09 at 3:53
opaque you mean. transparent is slow in performance – vsync Sep 15 '09 at 13:51
For those wondering how to do it: Just add this to your Flash object parameters: <param name="wmode" value="transparent"> – Fábio Antunes Apr 20 '10 at 11:02

bgiframe is a jquery plugin that will allow you to do what you are asking; You can do this without jquery (obviously), but the plugin makes it really simple. Technique is basically to add an IFrame around the content you want to show over top of the flash (this also works for hovering content over dropdown lists).

share|improve this answer
1  
looks good, unfortunately jquery isnt an option. – Luke Lowrey Apr 3 '09 at 3:52

@Fábio Antunes - Who is still wondering here is an example:

   <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/s...rsion=6,0,29,0" width="192" height="298">
          <param name="movie" value="flash/template2.swf">
          <param name="quality" value="high">
          <embed wmode="transparent"> <!--THIS IS NECESSARY TOO-->
          <param name="wmode" value="transparent">
          <embed src="flash/template2.swf" width="192" height="298" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" wmode="transparent"></embed>
        </object>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.