Recent Questions
Q: I am using the tree menu script in a frameset, and I would like for the selected menu branch to stay highlighted after the user moves the mouse to another window(where the menu brings up a new page),just so the user knows where he/she is. 
Is that possible? 
A: But if you open links in the another frame (window) the initial frame with your menu isnot reloaded, so the clicked item will be highlighted.
You should set the following parameters:
  var ttoggleMode=1;
  var tpressedFontColor="#AAAAAA";
You can also set the following parameter to save menu state:
  var tsaveState=1;
  var tsavePrefix="menu1";
If you install the menu without frames. On your pages you should call the following function/functions to expand/highlight items, for example:
<script>
dtreet_ext_expandItem (dtreet_ext_getItemIDByIndex (0, 0), 1);
dtreet_ext_setPressedItem (0, dtreet_ext_getItemIDByIndex (0, 1));
</script>
See more info about API functions here:
http://www.deluxe-tree.com/functions-info.html
Example:
http://deluxe-tree.com/highlight-selected-menu-item-sample.htmlQ: I have a transparent dhtml menu located at the bottom of the page with just one level of submenus. On larger screens, the submenus open either upwards or downwards, depending on how many items are in the transparent dhtml menu. 
 Can I set the submenu's to always open upwards?
A:  Try to set the following parameter:
  var subMenuVAlign="top";
Q: How do assign my own onclick events to menu options for the dhtml menubar?
 I want do more than just redirect to an href.
A:  Actually you can use your own Javascript code instead standard links.
For example:
 
   var menuItems = [
 ["text", "javascript:your_code_here"]
 ]; 
 
 or
 
   var menuitems = [
 ["<div onClick='your_code_here'>item text</div>", ""]
 ];
 Q: I downloaded the trial version and gave it a run.
 I cannot get thebackground color of the menu to change – it this a limitation of the trail version or a bug? 
A: No, it is not the limitation. 
Please, set these parameters: 
  var menuBackColor="#000000"; 
  var menuBorderColor="#000000"; 
  var itemBackColor=["#000000","#000000"]; 
  var itemBorderColor=["#000000","#000000"];