Recent Questions
Q: I am trying to install a search engine on my site and am having trouble due to my use of your tree-menu system, which I love by the way.  I really need to find a compatible script that will search your javascript menu system, or at the very least search another file with mirrored links.  I DO NOT want to add the links to each page, this is why I love your menu's, there is one central location to change navigation statewide.
 Do you know if there is a search script that can do this( js, php) or is there a way to make your javascript tree menus accessible to the search engine?  
A: You can generate search engine friendly code.
 Deluxe Tree is a search engine friendly menu since v2.4.
To create a search engine friendly menu you should add additional html code within your html page:
<div id="dmlinks"> 
<a href="http://deluxe-menu.com">menu_item_text1</a> 
<a href="http://deluxe-tree.com">menu_item_text2</a> 
...etc. 
</div> 
To generate such a code use Deluxe Tuner application.
You can find this GUI in the trial package. 
Run Tuner, load your menu and click Tools/Generate SE-friendly Code (F3).
Q: I am wanting to load menu items from a sql database but I cannot understand how to do it using the example you provided. 
 I am using asp but do not know how to incorporate it into the above javascript. Would it be possible for you to provide me with an example please? I tried using <%  …… %> but this did not work. 
A:  Unfortunately we don't have example with ASP.
The example of the menu working with PHP/MYSQL you can find here:
http://deluxe-menu.com/rq-loading-bar-MySQL-support.html
Q: What is the purpose of the blank image file in the Parameters panel of the create dhtml menu software?
 Also, would you please direct me to a site or documentation that would provide information on such details? 
A:  If you won't use some images in the menu for examplearrows the blank image will be used.
So, you should set correct path to it.
You can find all documentation on our website.
http://deluxe-menu.com/parameters-info.htmlQ: One other question, how do you get the menu bar to highlight and stay on the page you are viewing rather than highlighting home the whole time. 
A: You should set a pressed item using Javascript API: 
function dm_ext_setPressedItem (menuInd, submenuInd, itemInd, recursion) 
Sets a current pressed item.
menuInd - index of a menu on a page, >= 0. 
submenuInd - index of a submenu, >= 0. 
itemInd - index of an item, >=0. 
recursion = true/false - highlight parent items. 
But notice, to use dm_ext_setPressedItem() you should know ID of selected item and subitem. 
You can't get this ID after you reload your page. That is why you should write your own code on PHP.