Recent Questions
Q: Is there a way to hide a javascript top menu options using either CSS or the java api based on the site user?
 (I use ColdFusion for scripting) 
A: Deluxe Menu supports Javascript API.
You can find more info here:
http://deluxe-menu.com/dynamic-functions-sample.html
You can try to use API functions in that case:
function dm_ext_changeItemVisibility (menuInd, submenuInd, itemInd, visibility)
To disable items you should set the target parameter to "_".
You can try to use the following function
function disable() {
 dm_ext_changeItem(0, 1, 1, ["", "", "", "", "", "_"]);
 }
to disable your items.
Q: Can I use javascript to get the object (getElementByID). If not howdo I hide my dropdown menu on print?
A: You can add a new button to print your page and call onClick event, soyou should write: 
<body .... 
onClick="document.getElementById('dm0m0').style.visibility='hidden'; window.print();"> 
 ... 
</body> 
Or you can use the same javascript code from your menu item. 
For example: 
  var menuItems = [ 
 ["Print", "javascript:document.getElementById('dm0m0').style.visibility='hidden'; 
window.print();", icon1, icon2], 
]; 
But if you want to hide the menu when your customers push "File/Print"you should write so: 
You must create two functions, for example: 
 
function myprint() 
{ document.getElementById('dm0m0').style.visibility='hidden'; 
 window.print(); 
} 
function myprint2() 
{ document.getElementById('dm0m0').style.visibility='visible';
 window.print(); 
} 
You should add this functions into your code. 
 
And then you must write so: 
 
window.onbeforeprint = myprint; 
window.onafterprint = myprint2;
Q: But where on javascript drop down menu creator I can set the dmsearch=2 ? I can't find it, there isn't an option or submenu for the search box on the left side of deluxe tuner. 
A:  Use last version of javascript drop down menu creator v3.2.
You can find
  var dmSearch=2;
parameter in the "Advanced" section of parameter's list.
Then you should select an item (where you want to add search box), forexample first item and add
search:value='search...' style='border:1px;width:60px;height:14;font-size:10px;'
code into the "Link" field directly ("Item Parameters" window).
Q: I am a web designer and considering purchase of your product. I have downloaded a trial dhtml menu version, but no image files were created. Other programs I have tried exported html, js file, & image files. What's the deal?
 Please help! 
A:  I'm not sure I understand you.
You should create your menu in Deluxe Tuner app (you can also usetemplates). Then you should save your menu as .js file (click "yes" tosave all files for the menu). You also can save your menu into htmlpage.