Recent Questions
Q: My slide drop down menu appears at the top of the page rather than in the cell in which I placed it
A:  You're using absolute position for the menu now:
  var absolutePos=1;
You should use the relative position:
  var absolutePos=0;
Q: Will all your navigation bar examples work cross-frame? 
A: See how should you create cross frame menu:
1. To initialize the cross frame menu call dm_initFrame()
function instead of standard dm_init() function within data.js file:
dm_initFrame(framesetID, mainFrameInd, subFrameInd, orientation);
framesetID - id attribute of the frameset;
mainFrameInd - index of the main frame (where the top-menu is placed), >=0;
subFrameInd - index of the subframe (where the submenus will be shown), >=0;
orientation - frame orientaion: 0 - top-to-bottom, 1 - left-to-right; 2 - bottom-to-top; 3 - right-to-left.
So you should create your menu in Deluxe Tuner, save it.
Create html file with your frame set.
Set ID for the first frameset:
<FRAMESET id=frmSet rows=220,*>
<FRAME id=frame1 src="Deluxe Menu Samples_files/cross-frame-horizontal-1.htm"> //menu frame
<FRAME id=frame2 name=frame2 src="Deluxe Menu Samples_files/testlink.htm"> //content frame
</FRAMESET>
Then you should open your data file in any text editor and change
dm_init(); for example to dm_initFrame("frmSet", 0, 1, 0);
You'll find more info here:
http://deluxe-menu.com/cross-frame-mode-sample.html
Q: I’m looking for a popup multilevel menu. I think from your website that your menus will do this for but I can’t figure out using the trial version how to do it. 
 I have an image map of a graphic and I need to call my javascript pop out menu from an OnMouseOver in the image map… 
<areahref="#"onmouseover=""shape="rect"coords="120, 124, 180, 136"> 
 Obviously I can’t put the standard <script>… as described in your sample. 
 Is there a setting that I need to change or is this not possible with your javascript pop out menu. 
A:  You can try to use Popup Menu, see more info:
http://deluxe-menu.com/popup-mode-sample.html
See how you should call pop up menu
 <img src="data-samples/images/popup_pic.gif" width=180 height=119 onmouseover="return dm_popup(0, 2000, event);" onClick="return dm_popup(1, 2000, event);" style="cursor: pointer;"><br>
You can create your javascript pop out menu using Deluxe Tuner application.
Q: first - the deluxe menu is a nice tool, greatly.
 but I have 2 little problems:
 - I'll display the item direct side by side without distance, I can't found the parameter
 - I wish the actual site (dhtml vertical menu item) in another colour 
A:  > - I'll display the item direct side by side without distance, i cant found the parameter
Check that you have correct
  var menuWidth="";
parameter.
You can send us a copy of your html page (including .js files) ora direct link to your website, so we can check it.
> - I wish the actual site (menu item) in another colour
You can create Individual Item style and assign it for the top items,for example:
  var itemStyles = [
 ["itemBackColor=#8080FF,#FFFF80","itemBorderWidth=1","itemBorderStyle=solid,solid", "itemBorderColor=#000080,#FF8000","showByClick=0"], //style0
];
  var menuItems = [
 ["Item 1","", "", "", "", "", "0", "", "", "", "", ], //style0
 ["Item 2","", "", "", "", "", "0", "", "", "", "", ], //style0
  ["|Item 3","", "", "", "", "", "", "", "", "", "", ],
  ["|Item 4","", "", "", "", "", "", "", "", "", "", ],
 ["Item 5","", "", "", "", "", "0", "", "", "", "", ], //style0
  ["|Item 7","", "", "", "", "", "", "", "", "", "", ],
  ["|Item 8","", "", "", "", "", "", "", "", "", "", ],
 ["Item 6","", "", "", "", "", "0", "", "", "", "", ], //style0
];