Recent Questions
Q: I'm loving your product! It has definitely made my life easier.
 I do have a question however. I know if I put a "+" in front of the title, the category will be expanded by default. 
 ["+PRODUCTS","", "", "", "", "", "", "", "", ], 
Is there a way to do that dynamically? Maybe have some code that would tell the sliding tree menu to expand on that particular page? 
A: 	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.htmlQ: Cross-frame mode: after clicking on a menu item and the subframe is loading and then mouse over the menu when the subframe has not finished loading a javascript error occurs and then the javascript vertical menu breaks. 
A:  You can get this error when you load pages from the another domain.
Deluxe Menu can support this mode for the same domain only -- ifyou loaded a page to a subframe from another domain, the submenuscan't be shown in it. It happens because all browsers don't allow todo that for security reasons. Just imagine if you'll able to create aframeset from 2 frames, 1st frame will be with a zero height-width,and you'll load your page into it. Then user will go to another domainand your "invisible" frame will change a content of other pages!
Q: I've tried that in my dhtml menu maker and it keeps going to the bottom of the list. That's why I emailed my question. I had read the part of drag and drop, but it doesn't seem to work. Don't know if I'm doing something wrong, if my software is corrupted somewhere. Everything else seems to work correctly.
 Any other ideas or why it owuld do that?
A:  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.
Q: The menu has a problem with newlines. The menu builds correctly (layout ok) but when pressed on the button nothing happens 
 At some point, in the DHTML menu, we have the following in the javascript: 
   var menuitems = [ 
  ["|Print HTML","javascript:alert('HTML print: Only the 7 most recent orders on the screen \n will be printed because of space limitations on paper.');printResult('4'); ","","", ,"_parent",,] ] 
 As you can see we have a newline (\n) between the words "screen" and "will". But when we click on the button nothing happens. If we remove the newline and we click on the button then we first get the alert box. After pressing the OK button the function printResult is called. 
 Is there any way for us to still use the newline character in the menuItems variable? 
 This can be easily reproducible. That's why I haven't made an example. 
A:  Try to write in the following way \\n:
 ["|Print HTML","javascript:alert('HTML print: Only the 7 most recent orders on the screen \\n will be printed because of space limitations on paper.');printResult('4'); ","","", ,"_parent",,]