Recent Questions
Q: Does you tree menu javascript support right-to-left layout?
That is to say it opens the branches/submenus from the right to left. 
A: Yes it is possible to create a menu for right-to-left languages with Deluxe Tree in the same way as in standard htmlcode.
Please, set <HTML dir="rtl">. You should set the following parameters:
  var titemAlign="right";
  var ticonAlign="right";
  var texpandBtnAlign="right";
Deluxe Menu support right-to-left languages.
In Deluxe Menu you can set the following parameter:
  var dmRTL = 1;
Set this parameter to 1 if you're using right-to-left direction of html page <HTML dir=rtl>.
Q: I have a javascript menu codes that I change dynamically with dm_ext_changeItem. 
 When I converted it to a popup window, dm_ext_changeItem does not seem to work. Is this a bug? 
A:  See in the popup menu you should write submenuInd+1:
 dm_ext_changeItem (menuInd, submenuInd+1, itemInd, iParams)
Q: I wanted to know how to hide/ disable a menu item for a particular user/roleid in dreamweaver dhtml menu..
A: 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: I have some problems with Deluxe Tree. 
I have set the   var tlevelDX to 5 to decrease the indent for each level of items, but would like to decrease the indent even more. Ican't find the parameter that will set the indent in pixels of thefirst level item. 
Also, is there a setting that will put text for a menu item on a second line? 
 I hope that you can help. 
A: You can make the smallest indent this way: 
  var tlevelDX = 0; 
You are not able to have more little indent. This place is reservedfor + buttons. 
Try to set this parameter: 
  var tnoWrap=0; 
You can also use <br> tags in the item text, for example: 
  var tmenuItems = [ 
 ["line 1<br>line 2"], 
];