Recent Questions
Q: I’m trying to set up Ajax dhtml menu tree script but it doesn’t work..
A: To enable AJAX Tree Menu use the following menu parameters:
   var tajax=1;
Then set your menu in such way:
  var tmenuItems = [
 ["Deluxe Tree: XP Style","", "", "", "", "XP Title Tip", "", "0", "", "data-samples/data-ajax5.js", ],
 ["+Samples Gallery","", "", "", "", "XP Title Tip", "", "0", "0", "", ],
  ["|Samples Block 1","", "", "", "", "", "", "", "", "data-samples/data-ajax.js", ],
  ["|Samples Block 2","", "", "", "", "", "", "", "", "data-samples/data-ajax.js", ],
  ["|Samples Block 3","", "", "", "", "", "", "", "", "data-samples/data-ajax.js", ],
];
Each .js file must contain menuItems variable for the submenu in the following format:
   var tmenuItems = [
 [text, link, icon1, icon2, icon2, tip, target, itemStyle, submenuStyle, jsFileName],];
Where jsFileName - .js filename on the server that contains tmenuItems variable for the submenu.For example:
  var tmenuItems = [
 ["Home","testlink.htm", "", "", "", "Home Page Tip", "", "", "", "", ],
 ["Product Info","", "", "", "", "Product Info Tip", "", "", "", "data-samples/data-ajax2.js", ],
 ["Samples","", "", "", "", "Samples Tip", "", "", "", "data-samples/data-ajax4.js", ],
 ["Purchase","testlink.htm", "", "", "", "Purchase Tip", "", "", "", "", ],
 ["Support","", "", "", "", "Support Tip", "", "", "", "", ],
  ["|Write Us","mailto:[email protected]", "", "", "", "", "", "", "", "", ],
];
See more info here:
http://deluxe-tree.com/ajax-menu-loading-sample.htmlQ: So, as you can see, I use "_self" in order to make the URL open in same window when left-clicked. If I set it to empty it opens in new window (is that correct behaviour (I thought we should use _blank to get that effect). 
A: In the menuItems you can set target parameter for each itemindividually.
The following parameter:
  var itemTarget="_blank";
sets target for all items, so if you haven't specified target for theitem
["Arbeidsplaner","cp_workplan.php",,,,"","0","0"],
the target for this item will be "_blank".
Q: You have been great help, but this will not work for me. All I want is the dropdown menu javascript I have attached to have these colors on the seperate top items. I just cannot make the software work . As soon as I get this done I promise to leave you alone 
 #0000ff Find Out Who We Are 
 #FF00FF Apply for a Fellowship
 #00ffff Fellow'sCorner 
 #00ff00 Enroll in a Course
 #FFFF00 Engage in a Discussion
 #FF0000 Read the Bulletin 
A:  You should create 6 Individual Styles and assign them to you topitems.
  var itemStyles = [
 ["itemBackColor=#0000ff,#0000ff","showByClick=0"], //style 0
 ["itemBackColor=#FF00FF,#FF00FF","showByClick=0"], //style 1
 ["itemBackColor=#00ffff,#00ffff","showByClick=0"], //style 2
 ["itemBackColor=#00ff00,#00ff00","showByClick=0"], //style 3
 ["itemBackColor=#FFFF00,#FFFF00","showByClick=0"], //style 4
 ["itemBackColor=#FF0000,#FF0000","showByClick=0"], //style 5
];
 ["Find out Who we are","http://www.humanscience.org/", "", "", "", "", "0", "0", "", "", "", ], //style 0
 ["Apply For Fellowship","http://www.humanscience.org/infoSnippets.cfm", "", "", "", "_blank", "1", "", "", "", "", ], //style 1
 ["Fellows Corner","", "", "", "", "", "2", "", "", "", "", ], //style 2
 ["Enroll in a course","", "", "", "", "", "3", "", "", "", "", ], //style 3
 ["Engage in a discussion","", "", "", "", "", "4", "", "", "", "", ], //style 4
 ["Read The Bulletin","", "", "", "", "", "5", "", "", "", "", ], //style 5
You can also set
  var itemSpacing=0;
to delete spacing around the dropdown menu javascript.
Q: Now, I need your help in another question: I can set "tpressedFontColor" to have the font of the active item in the dhtml tree menu take this color. 
 How can I make the onmouseover - background ("titemBackImage" of the individual style set in the item parameters) of the menu item also be saved in the active, selected dhtml tree menu item? I need to build a menu with different background-images (shown on mouseover and when active) for each item, so I cannot set ONE "titemBackImage" that fits for all.
 Thank you very much, Irene. And yes, I really love this product. 
A: Unfortunately it is not possible now to set background color orbackground image for the selected state. Deluxe tree doesn't have sucha feature now.
But we'll try to add this feature in the next versions of Deluxe Tree.