Recent Questions
Q: Does dropdown menu javascript supports right to left languages?
 
A: Yes, Deluxe Menu support right to left languages, set the following parameter:
  var dmRTL=1;
Specify also align for your items:
  var itemAlignTop="right";
  var itemAlign="right";
Q: I found some strange things while positioning the javascript hide menu. Does javascript hide menu behave different depending on where you are hosting your site?
A: Deluxe Menu is a Javascript product. It means that it works on aclient side only and it doesn't depend on the server which you're using.
Create us an example and send us a direct link to this example on bothhosting. We need to check it.
Q: How do I get started with Deluxe Menu? Do you have a link with instructions?
 I designed my own website with DreamWeaver 8.0 ( www.lesvants.com ) but don't have a clue as to how to start designing with your product.
 
A: Unfortunately we don't have step by step tutorial now. We'll try tocreate it in the nearest time. 
Deluxe Menus weren't developed as Dreamweaver/Frontpage extension,BUT you can use it as standard Javascript files. To install the menuinto your html page: 
1. open the page in your program 
2. open html source code of the page 
3. add several rows of code (<script> tags), For info see: 
http://deluxe-tree.com/installation-info.html 
That's all. 
It is possible that Dreamweaver changes some paths, so you havean error in the preview. 
On your site or in your browser there'll be no errors. 
Create your menu in Deluxe Tuner application
.You can create any menu as you like in Deluxe Tuner. 
Please, try to download trial package once again. We added alltemplates in Deluxe Tuner Templates window. 
Unfortunately, Deluxe Tuner doesn't copy all need images forVista Template into your folder. You should do it manually.After you create your menu in Deluxe Tuner you should copy all images youneed for the menu into your folder and correct images paths.You should set the following parameter 
  var pathPrefix_img=""; 
2. You should install the menu on your page. 
You can click, for example, File/Export to HTML (you can't do it inthe MAC version). 
Add several rows into your html page. 
<head> 
... 
 <!-- Deluxe Menu --> 
 <noscript><a href="http://deluxe-menu.com">Javascript Menu by Deluxe-Menu.com</a></noscript> 
 <script type="text/javascript">  var dmWorkPath="deluxe-menu.files/";</script> 
 <script type="text/javascript" src="deluxe-menu.files/dmenu.js"></script> 
 <script type="text/javascript" src="data-deluxe-menu.js"></script> //data-deluxe-menu.js - data file created in Deluxe Tuner. 
... 
</head> 
<body> 
... 
<table> 
<tr><td><script type="text/javascript" src="deluxe-menu.files/data.js"></script></td></tr> 
</table> 
... 
</body> 
 
You should also copy all engine files 
dmenu.js 
dmenu4.js 
dmenu_add.js 
dmenu_dyn.js 
dmenu_key.js 
dmenu_cf.js 
dmenu_popup.js 
dmenu_ajax.js 
into "deluxe-menu.files/" folder. You should place this folder in thesame folder with your index. html page. 
Try that.
Q: I am using collapsible javascript menu. In the menu are some links to pdf-files. 
 On clicking them, a new window opens and the pdf is shown.
 But to download the file, the right mouse click is necessary, but the field with save link isn't displayed. Any idea to solve this problem? 
 
A:  You can try to write your tmenuItems in the following way: 
 ["|<a href='file.pdf' target='_blank'>Open file</a>","", "", "", "", "", "", "", "", ], 
But you should create correct style for <a> tag.