Recent Questions
Q: How can I open the links that I created for the items /sub-items on the same window 
for the mouseover menu (not on a new window)?
A:  You can set target parameter for all items:
   var itemTarget="_self";
 or for each item individually:
 ["","testlink.htm","http://images.myregistry.com/images/myregistry/tabs/thingstodo.gif", "http://images.myregistry.com/images/myregistry/tabs/thingstodo1.gif", "Home Tip","_self", "0", "0", , ],
Q: The only remaining problem I see is that the html popup menu appears in slightly different positions depending upon where your mouse touches the icon.
 Is there a way to make the menu position absolute in respect to the icon? I have tried playing with the menu item parameters that seemed related with no success. 
A: 		See dm_popup() function parameters:
return dm_popup(menuInd, pause, event, x, y)
menuInd - index of the menu on a page, >= 0.
pause - determines the time when the html popup menu will be hidden.
event - constant. Do not change.
x, y - optional. Set these parameters if you want the menu to appear in the specified place.
In other case the menu will be shown in the mouse position.
Q: I've build a custom javascript menu navigation in Hebrew, but I saw only squares.
 
A: You should turn on "Tools/Use utf8 encode" property.
In that case your data file will be saved in UTF-8 encode.
Enter these symbols and save your data file.
If you don't want to use UTF-8 encode on your page you should turn off
"Tools/Use utf8 encode" property, save your data file and manually
change your letters in any text editor.
Q: I am testing it on my website.
 I have under the submenu 'Generalites" two links "Presentation" and "Formulaires" 
 I would like when I click on what ever link on the expandable javascript menu that the visited link stay in a different color and with a different background. 
 For exemple:
 If I click on link Presentation then this link will become in a different color and also its background.
 Then If I click on Formulaire the prevous link is reset and the Formulaire link appears in a differemt color and its backgroud. How should I do it ?
 
A:  Deluxe Tree doesn't save a pressed 
item as it saves a tree state. It works within 1 page only and if youreload the page you should set a pressed item using Javascript API: 
function dtreet_ext_setPressedItem (menuInd, itemID) 
Please, see here: 
http://deluxe-tree.com/functions-info.html 
You can also set 
  var tsaveState = 1; 
More info you can find 
http://deluxe-tree.com/data-samples/tree-menuxp-save-state.htm 
To expand specific items you should use API function 
function dtreet_ext_expandItem (itemID, expand)