Recent Questions
Q: How can I make items appear much more quickly in the drop down menu samples?
They appear but only after mouseing-over the menu and waiting for approximately one second.
A: Try to adjust the following parameters:
var dm_writeAll=0;
var smShowPause=100;
var smHidePause=1000;
var transDuration=150;
var transDuration2=200;
You can also turn off transitional effects
var transition=-1;
Q: First of all, your product is amasing!
I can not create popup windows by clicking on a menu.
For example:
MainMenu:     Home > Favorites > Fun > About us
Sub Menu:      - Portal
                       - Games
                       - Forum
                       - Chat
By clicking on “Games” Button of sub menu I would like to open a popup window,
Not regular window with navigation, scroll and so on.
A: You can use your own javascript functions in the menu items.
You should paste "javascript:some_function()" into item's link field, for example:
var menuItems = [
["text", "javascript:your_function(...)", ...]
];
Q: How can I get an image to be a separator in between items on my css vertical drop down menu?
A: To add a separator you should
//--- Separators
var separatorImage=""; //for subitems (top items in vertical menu)
var separatorWidth="100%";
var separatorHeight="3px";
var separatorAlignment="right";
var separatorVImage="separator.gif"; //for the top items (subitems items in vertical menu)
var separatorVWidth="100%";
var separatorVHeight="2px";
var separatorPadding="";
You can create separators using menuItems (you can do it in DeluxeTuner, use "Add separator" button), for example:
var menuItems = [
["item 1"],
["-"], // this item is separator
["item 2"],
];
Q: Is there a way to convert a dhtml javascript tree menu I created into a Deluxe Menu using the same data so I do not have to type in all the names and links of items?
A: Actually menuItems and tmenuItems have a different structure.
var menuItems = [
[text, link, iconNormal, iconOver, tip, target, itemStyleInd, submenuStyleInd, jsFilename],
];
var tmenuItems = [
[text, link, iconNormal, iconOver, iconExpanded, tip, target, itemStyleInd, itemXPStyleInd, jsFilename],
];
We don't have such converter yet. You can try to change your menuItems in any text editor. I suppose it will be easier to convert items in editor than in Deluxe Tuner.