Recent Questions
Q: I have downloaded the trail version of java menu source, and I am getting script errors. 
 I am working with the deluxe menu. 
 Actions:а line 15 
 Character 9 
 Access denied 
 file://C:\Program Files\Deluxe 
 Menus\deluxe-menu\deluxe-tuner\data\deluxe-menu\toolbar\toolbar.html 
 I uninstalled, cleared all cache and temporary files, restarted the computer, reinstalled and I still get the same message. 
 I am convinced this program is exactly what I need, but one step at a time.
 
A: I suppose that you're using Windows 2000. 
We have some problems with Tuner on this OS. 
Unfortunately we didn't fix the issue with Windows 2000 yet. 
Try to delete all content from toolbar.html file. 
C:/Program Files/DeluxeMenus/deluxe-menu/deluxe-tuner/data/deluxe-tree/toolbar/toolbar.html 
C:/Program Files/DeluxeMenus/deluxe-menu/deluxe-tuner/data/deluxe-menu/toolbar/toolbar.html 
C:/Program Files/DeluxeMenus/deluxe-menu/deluxe-tuner/data/deluxe-tabs/toolbar/toolbar.html
Q: Do you have an extremely simple example of modifying a menu with the JavaScript API? I've played with the example on the site, but I have trouble removing the other menus without breaking it.
 I just want to use the API to change the icon on the menu items.
A: You should use the following function:
function dm_ext_changeItem (menuInd, submenuInd, itemInd, iParams)
<script language="javascript" >
dm_ext_changeItem(0, 0, 1, ["", "", "new_icon.gif", "new_icon_o.gif", "",,""]);
</script>
Q: We have a problem with true type fonts. The dropdown menu in html does not showing properly for Turkish letters. We are using true type fonts (bold 10px TR Tahoma). 
A:  Font.If there will be no TR Tahoma font on the user machinethe font won't be shown correctly.
You can find another font similar to your font and write it through a comma.
You should choose the font among the following fonts:
Arial
Tahoma
Times New Roman
Trebuchet MS
Verdana
These fonts are installed on the most of windows computers.
For example:
  var fontStyle=["bold 9px TR Tahoma, Tahoma","bold 9px TR Tahoma, Tahoma"];
Or you can create images with text and use it for the top items.
Encoding.
You can save your data file in UTF-8 in Windows version of DeluxeTuner v3.2.5.
You should turn on "Tools/Use utf8 encode" property.In that case your data file will be saved in UTF-8 encode.
Enter these symbols and save your data file.
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.
You can also replace your letters with special sets, for example
É - Capital E, acute accent - É
ç - Small c, cedilla - ç
  var menuItems = [
 ["É....","testlink.html", "", "", "", "", "", "", "", ],
 ["ç....","testlink.html", "", "", "", "", "", "", "", ],
Q: I got the tabs menu to work! 
 Can you tell me which file(s) I must change to change the content of each tab 
 Very many thanks for your help.
 
A: For each tab you can set content <div> (contentName,contentDescription, contentVariations). 
  var bmenuItems = 
[ 
 ["Style Name","contentName",,,,,"1"], 
 ["-",,,,,,"0"], 
 ["Style Description","contentDescription"], 
 ["-",,,,,,"0"], 
 ["Style Variations","contentVariations"], 
 ["-",,,,,,"0"], 
 ["Empty",,,,,,"2"], 
]; 
You can find these divs in the tabs-style-glass.html file. You shouldpaste the content of your tabs in these divs.