Recent Questions
Q: Can a clear drop down menu transparent go over a Flash and be transparent?
A: Yes, it is possible.
To set transparence for submenus you should set the followingclear drop down parameter:
var transparency="70";
Q: Is it possible to have the actual words clickable in order to open up a sublevel menu instead of having to click on the + symbol?
A: Yes, you can do it.
You should set this parameter:
var texpandItemClick = 1;
Q: I got it working however I have an additional question.
How do I allocate the width of each "button" see sample how for instance the "FAQ" button is so narrow compared to others. I tried adding spaces with no result.
A: You can use Individual Item Styles to set exact width for the menuitems.
For example:
var itemStyles = [
["itemWidth=100px"], //style 0
];
var menuItems = [
["Home","testlink.html", "", "", "", "", "0", "", "", ], //style 0
["Product Info","", "", "", "", "", "0", "", "", ], //style 0
Q: I can't find anywhere in your documentation that states where I can call this function onclick other than in the menu web page target.
A: You can use onclick event in the following way:
var menuitems = [
["<div onClick='getLink(\'/Admin/Sales/Customers/Customers.asp\')'>Table of Contents</div>", ""]
];