Recent Questions
Q: Is there a way to programmatically specify which tab is selected in the html tabs navigation?
A: You can set "bselectedItem" and "  var bselectedSmItem" parameters based on your link before you call your data file.
For example, move "  var bselectedItem" and "  var bselectedSmItem" parameters from your data file to your code.
<TD vAlign=top align=left>
/* Select Tab */
<script type="text/javascript" language="JavaScript1.2">
  var bselectedItem=   var bselectedSmItem= </script>
<SCRIPT src="data.js" type=text/javascript></SCRIPT>
</TD>
You should define seltabs and selsmtabs using server side script.
You can also set it on every page before you call data.js file, for example:
<TD vAlign=top align=left>
/* Select Tab */
<script type="text/javascript" language="JavaScript1.2">
  var bselectedItem=4;
  var bselectedSmItem=3;
</script>
<SCRIPT src="data.js" type=text/javascript></SCRIPT>
</TD>
Q: I have created a menu for a product tutorial. It consists of about 50 topics, each of which is listed in my menu. I’m wondering if there is a way to gray out the menu link for the open tutorial topic? 
A: Unfortunately, Deluxe Menu doesn't have such a feature. 
You should write your own code, for example, on PHP. 
You can try to use the following function 
function disable() { 
 dm_ext_changeItem(1, 1, 1, ["", "", "", "", "", "_"]); 
 } 
to disable your items. 
The example you can find on our site 
http://www.deluxe-menu.com/dynamic-functions-sample.html 
Please, see the source code. 
Q: I'd like to re order the position of the drop down menu's items (by example) the cities.
 A-city
 C-city
 D-city
 B-city
 E-city etc.....
 B-city had to come under A-city, how can we do that? 
 Thank you 
A: 	I'm not sure I understand where you would like to change the position.In Deluxe Tuner or dynamically on your html page.
To move items in Deluxe Tuner select items you want and use a mouse drag'n'drop method.
See the attached screenshot. Click on the item you want to move.Move your mouse in the correct place (holding left mouse button).Wait till you'll have gray line in the place where you want to insertthe item and release mouse button.
To dynamically change your items you can use the following API function:function dm_ext_changeItem (menuInd, submenuInd, itemInd, iParams)
See more info:
http://deluxe-menu.com/functions-info.htmlQ: I’m trying to setup a simple DHTML MENU (TREE MENU). It works just fine. I just have an issue that I can’t solve. 
 The parameter “  var tmenuHeight = "0"; Your documentation says the following 
 -----------  
 Height of the menu in (px, % or other units). 
 If the value 0 - the menu sets its height automatically. 
 If the value is small - scrollbars appear. 
 In IE it looks fine but I cannot see the menu in Firefox. When I set the parameter to for example 100 then it shows up both in IE and Firefox. But I cannot set a value in pixels. I don’t know how big the menu is because it’s dynamically built. According to your doc I can specify the value in percentage but this doesn’t work. When I set the value to “100%” it doesn’t show up in Firefox again.   
 How can I solve this issue?
A:  Try to set this parameter in the following way: 
  var tmenuHeight = "auto";