Recent Questions
Q: I would prefer to have a sort of documentation or tutorial video but asI have seen on you website there is not. I have also to mix the javascriptcode with php. 
Could you please help me, software look fine but we don't have time totest the code, tutorial will be appricieted.
 
A: Unfortunately, we don't have tutorial yet, we'll try to create it inthe nearest future. 
To create the pop up menu you should to do the following steps: 
1. 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 add the following parameter for the pop up menu: 
  var popupMode=1; 
You should do it manually. Please, open your data file in any texteditor and add such parameter. 
3. You should install the menu on your page. 
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> 
... 
<img src="deluxe-menu.files/logo_w.gif" onClick="return dm_popup(0, 1000, event);"> 
... 
</body> 
Where return dm_popup(menuInd, pause, event, x, y) 
menuInd - index of the menu on a page, >= 0. 
pause - determines the time when the menu will be hidden. 
event - constant. Do not change. 
x, y - optional. Set these parameters if you want the menu to appear in the specified place. In other case the menu will be shown in the mouse position. 
 
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: When we use dhtml menus on our pages it appears behind Flash objects.
A: You should add "opaque" parameter for <object> and <embed> tags.
See, how you should install flash on your pages.
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" 
codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" height="150" width="732" name="if-header">
 <param name="movie" value="images/flash/if-header.swf">
 <param name="quality" value="best">
 <param name="play" value="true">
 <param name="wmode" value="opaque">
<embed height="150" name="if-header" pluginspage="http://www.macromedia.com/go/getflashplayer" src="images/flash/if-header.swf" 
type="application/x-shockwave-flash" width="732" quality="best" wmode="opaque" play="true">
</object>
Q: I have looked and looked but I cannot figure out for the life of me how to make the Icon ontop and the words on the bottom of java menu items, The class A and Class C words need to be at the bottom of the pictures if possible.
A:  You can paste any html code within java menu items.
For example:
["<img src='image.gif'> <br>Class A ","","","",""]
Q: I used the drop menu creator to create a simple tab example, and I created a simple HTML file to display the tabs. It initially appears fine when the page first displays (e.g., the correct div is hidden), but when I *first* click on a tab I always get a javascript error deep in the .js code. Then I click around a bit between the tabs and get some display problems (no more javascript errors though), until finally the show/hide logic recovers and all looks ok. 
 The error I initially get is something like “tabs[…].id is not an object”. I have the IE7 debugger turned on, otherwise I might not ever see this error. 
 FYI, I tried your example menus on your web site and everything is fine! Maybe the .js files on your web site are not the same as those created by the generator?
A:  You should set the following parameter in drop menu creator:
  var bselectedSmItem=0;