Recent Questions
Q: Before purchase this product in Multiple Websites Licence, I would like to know: 
   In your licence sample to get the key, the domain name is "yourdomain.com". 
   Can I use as domain name a IP address (for Intranets), like "200.211.1.20" to get the key for the java right click menu?
 
A:  You should register the menu for a domain name or for IP address. 
In other words, you should register the menu for the domain name thatyou print in a browser's search string, for example: 
http://intranet/ 
http://klinikum-nuernberg/ 
http://192.168.0.1 
http://localhost 
But you menu won't work on a local machine, for example 
j:\Stationshandbuch\start.html
Q: I think that your product is great makes everything look nice and professional with the drop down menu Items. My question is I have certain menu Items that I will need to disable at certain times. I do this now using a standard button and grabbing my parameters from an SQL database. Is there a way for me to basically pull which menu items I need disabled and present the customized menu for each client. I have read that your product has this ability I was looking for a little guidance or maybee a write up on someone that has done this.
 
A: Unfortunately, Deluxe Menu doesn't have such a feature.
You should write your own code, for example, on PHP. 
You can try to use the following function 
function disable() { 
 dm_ext_changeItem(1, 1, 1, ["", "", "", "", "", "_"]); 
 } 
to disable your items. 
The example you can find on our site 
http://www.deluxe-menu.com/dynamic-functions-sample.html
Please, see the source code on this page. 
Q: Please go to my website. I'm trying to getthe dhtml popup menu aligned to the right. I thought I could trick it by telling the CSS to alight the text to the right but that didn't work. Can you make a suggestion on how I can do this? 
A:  Try to install your tabs into the table with right alignment, for example:
 <table width='100%'>
 <tr>
 <td align="right">
 <script type="text/javascript" src="test_files/tdata.js"></script>
 </td>
 </tr>
 </table>
Q: First I want to thank you for the great support you provided. I have another question about the dynamic javascript tree. Is there a javascript API to fire an user click event so the browser will load proper page accordingly? I looked around the current APIs from your site and could not find one. 
A: 	You can use dtreet_ext_userClick (itemID) function.
See more info:
http://deluxe-tree.com/functions-info.html
 Actually you can use your own Javascript code instead standard links and html code inside item text. For example:
   var tmenuItems = [
 ["text", "javascript:your_code_here"]
 ]; 
 or
   var tmenuitems = [
 ["<div onClick='urlSubstitution(\'transco/sheet.asp?stype=1\')'>Table of Contents</div>", ""]
 ];