Recent Questions
Q: I contact you because this morning we have bought a single license of your deluxe tree menu for our web site www.roderstore.com All features of tree menu work good when I try it on local computer. 
 When I send the files on web site there is the problem that we must work on different directory : the script must be saved in a directory and the html page with menu inside is installed in another directory. 
 We can't save the script inside the directory of html pages because there are a lot of pages that call the tree menu, in different levels of path. 
 In the header of html page I have write the absolute path of script ( http://www.domain.com/menu/it/deluxe-menu.files/ ) and I have called the source of script with all absolute path. 
 The problem is that the tree javascript moving menu is visible, the function are OK ( expand and collapse are OK ) but the tree don't have the images ! 
 I presume that the problem is the different directory of script and html page ? 
 What can we do ? 
A:  You can try to use absolute path to your images. To do it you shouldset the following javascript moving menu parameter:
  var tpathPrefix_img="http://www.domain.com/menu/it/deluxe-menu.files/";
You can also send us a direct link to your website, so we can check it.
Q: I have a web site in which I am using Deluxe Menu in the top frame as a menu that crosses the frame and a menu in the lower frame that uses it as a menu in the same frame. 
 However, if a user selects the menu in the upper frame they get the menu that is associated with the menu of the lower frame. 
 The configuration files are names differently. 
 Is there a setting that needs to be set for the menu to distinguish between the two menus instantiations?
 
A: I suppose that you have two entries of dmenu.js file on your site in the  tag.
You must have only one entry of dmenu.js file.
Please, delete the same code. 
You should write so: 
<head> 
 <!-- Deluxe Menu --> 
 <noscript><a href="http://deluxe-menu.com">Javascript Menu by Deluxe-Menu.com</a></noscript>
 <script type="text/javascript">  var dmWorkPath = "menu2.files/";</script>
 <script type="text/javascript" src="menu2.files/dmenu.js"></script>
 <!-- (c) 2006, by Deluxe-Menu.com --> 
</head> 
<body> 
... 
<div> 
<SCRIPT src="deluxe-menu_files/data-deluxe-menu.js" type=text/javascript></SCRIPT> 
</div> 
... 
<div> 
<SCRIPT src="deluxe-menu_files/data-deluxe-menu11.js" type=text/javascript></SCRIPT> 
</div> 
... 
</body>>
Q: If I select one subitem in the slide out menus the other - opened subitem is closed.
 Is there a way to get this facility for Items? 
A: You should set the following parameter:
  var tcloseExpandedXP=1;
Q: How can I remove the vertical lines that connect the + signs in my javascript slide out menu. I do want to keep the -+ signs but just not the virticle lines. 
A:  See the following javascript slide out menu parameters:
// Lines
  var tpoints = 1;
  var tpointsImage = "vpoint.gif";
  var tpointsVImage = "hpoint.gif";
  var tpointsCImage = "cpoint.gif";
If you don't want to use lines you should set:
// Lines
  var tpoints = 0;
  var tpointsImage = "";
  var tpointsVImage = "";
  var tpointsCImage = "";