Recent Questions
Q: I would like to know does deluxe menu support Unicode characters? I have enter some Chinese texts through deluxe tuner and I can preview those Chinese text in deluxe tuner preview panel. I have chose "use utf8 encode"already. However after I saved the .js file, the js file encode become ANSI and those Chinese texts in the js file become ?????. Can deluxe tuner autosave the file to UTF8 encode?
A:  Please, check that you've set "Tools/Use utf8 encode".
When you save your data file in UTF8 you should use the same encoding on our html page.
So you should write:
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
If you don't want to use UTF-8 encode on your page you should turn off"Tools/Use utf8 encode" property, save your data file and manuallychange your letters in any text editor.
Q: Does deluxe menu need Java Virtual Machine installed on the computer that is trying to view the web site with a deluxe menu on it?
 
A:  This menu doesn't require any external plug-ins to be installed.
If you can't see the menu in all browsers you should change security browser settings to allow Javascript on pages you load. 
When your security browser settings doesn't allow Javascript onpages you load you can't see a dynamic page content. 
Q: I am trying out your menu and I've made out a little test case in the attached file.
 If you run it, you will see that the horizontal drop down menu css scrollsOUTSIDE the container div to the edges of the window. Is there anyway I can make the hhorizontal drop down menu css be within the container div and yet scroll? 
 And will the solution be cross-browser?
 Note that menuDiv needs to have a collapsableDiv style. I am assuming that that is not a problem.
A:  Try to set exact width for the submenu:
  var smWidth="925px";
Q: Can I use my own images as the tabs in a div tab menu?
A: The Drop down menu items have the following structure:
   var menuItems = [
 [text, link, iconNormal, iconOver, tip, target, itemStyleInd, submenuStyleInd, jsFilename],
 [text, link, iconNormal, iconOver, tip, target, itemStyleInd, submenuStyleInd, jsFilename],
 ...
];
Where iconNormal, iconOver - Icons of an item: icon in normal state, icon in mouseover state.
So you can set your menu items in a such way:
  var menuItems = [
 ["","testlink.htm", "icon1.gif", "icon1o.gif"],
 ["","", "icon2.gif", "icon2o.gif"],
  ["|","testlink.htm", "icon3.gif", "icon3o.gif"],
  ["|","testlink.htm", "icon4.gif", "icon4o.gif"],
  ["|","testlink.htm", "icon5.gif", "icon5o.gif"],
 ["","testlink.htm", "icon1.gif", "icon1o.gif"],
];