MX CSS Menus Forum :: Menu causing my flash object to hide
This thread was displayed: 0 times
Starting with 17th May 2007, Adobe Systems will stop offering support for any version of the discontinued InterAKT products. As a result, we will not answer to new support incidents starting with May 17th, 2007. Pending support incidents will still be followed in order to be closed. The product forums will remain open and be transformed in user-to-user forums. The general forums will be made read-only and not allow new posts or comments.
For more information about the affected products visit: www.interaktonline.com/Support/
Jason Brashear
06-07-2007 21:10:27 GMT +2
|
Some how the .js file is causing the flash object on my page just below the drom down menu to be hidden. Do you know how to prevent this?
-J
|
|
|
Jason Brashear
06-07-2007 21:11:04 GMT +2
|
|
|
|
Christopher Zimmermann
06-18-2007 20:16:32 GMT +2
|
Did you ever get your menu to work? I check out that link and it seemed fine to me.
Z
|
|
|
Josh Byers
06-22-2007 23:02:19 GMT +2
|
Make sure that you have set the wmode parameter to transparant in your object code.
<param name="quality" value="high" /> <param name="wmode" value="transparant" />
Also do this with the embed code:
<embed wmode="transparent" width="900" etc...
Then in the script below your menu list add this line:
obj_cssMenu1.setHideOverlayObjects(false);
So it would look like this:
var obj_cssMenu1 = new CSSMenu("cssMenu1"); obj_cssMenu1.setTimeouts(400, 200, 800); obj_cssMenu1.setSubMenuOffset(0, 0, 0, 0); obj_cssMenu1.setImageHoverPattern("{name}_hover.{ext}"); obj_cssMenu1.setHighliteCurrent(false, "{name}_hover.{ext}"); obj_cssMenu1.setHideOverlayObjects(false); obj_cssMenu1.setAnimation('slide'); obj_cssMenu1.show();
|
|
|