Log in

View Full Version : How do I fix the order of the menu/flash item



tonggi
11-18-2009, 04:16 PM
http://www.performancepowergrid.com/telos/Telos.html

on this page. With the drop down buttons for solutions. they get hidden behind the flash image. Is there a way to fix this? Should I post the code? Thanks!

jscheuer1
11-18-2009, 04:43 PM
Loosely from:

http://www.macromedia.com/cfusion/knowledgebase/index.cfm?id=tn_14201

Add in this language to your object/embed tag(s) -

Add the following parameter to the OBJECT tag:


<param name="wmode" value="transparent">

Add the following attribute to the EMBED tag:


wmode="transparent"

Or, if you are using two object tags, as can and is sometimes done, add the param tag to both of them.

If you are using script to generate the tags (as is frequently done to avoid the 'click to activate' feature in some browsers), the wmode transparent must be passed to the script. This is easily accomplished but, varies depending upon the sort of script one uses. Some scripts do it automatically.

tonggi
11-18-2009, 04:48 PM
your the man!

I just added this: <param name="wmode" value="transparent">

to the flash source. and it worked. I am so new to this HTML language.