Recent Questions
Q: I have found (was it like this before??) that if I right-mouse-click over a menuitem then I do not see any option to open the URL in new window....
 I do not get any options at all to open the URL in new window (or same window), in the browser context menu (both IE and Firefox).
 
A: No, Deluxe Menu doesn't have such a feature. This is only text, not alink. And we won't change it. Because now you're able to paste anyhtml code within menu item.
   var menuItems = [
 ["<div>Arbeidsplaner</div>","cp_workplan.php",,,,"_self","0","0"],
You can write your links in the following way:
 ["Channels","", , , , , , , , ],
 ["|<a class='menu' href='http://google.com/'>google</a>","", , , , "_self", , , , ],
 ["|<a class='menu' href='http://google.com'>Market</a>","", , , , "_", , , , ],
And create a style:
A.menu {
color: #000;
text-decoration: none;}
A.menu:hover {
color: #000;
text-decoration: underline;} 
Q: I'm trying out your menus, and I seem to have a problem with changing the title of a menu item. If the text is something like "Create a New Event" the entire menu spreads out and the rollover image starts replicating itself behind it, instead fo stretching with the text. So I see 1 /2 rollover images for that top level item, instead of just the one, width it's width spread out to accomodate the extra text. 
 I've tried the Styles bit, but that doesn't seem to fix the rollover image any... 
 Any pointers ?
 
A: You can try to set the exact width for each menu item using IndividualItem Styles. 
You should use Individual Item Styles. 
For example: 
  var itemStyles = [ 
 ["itemWidth=120","itemBorderWidth=1","itemBorderStyle=solid,solid"], //style0 
 ["itemWidth=100","itemBorderWidth=1","itemBorderStyle=solid,solid"], //style1 
 ["itemWidth=130","itemBorderWidth=1","itemBorderStyle=solid,solid"], //style2 
 ["itemWidth=150","itemBorderWidth=1","itemBorderStyle=solid,solid"], //style3 
]; 
 ["Home","testlink.htm"], 
 ["Samples","testlink.htm"], 
  ["|Group 1","", , , , , "0", , , ], 
  ["|Group 2","", , , , , "1", , , ], 
  ["|Group 3","", , , , , "2", , , ], 
... 
 [" More Samples","testlink.htm"], 
  ["|Group 1","", , , , , "3", , , ], 
  ["|Group 2","", , , , , "1", , , ], 
Where "0", "1", "2", "3" - style number in itemStyles. 
You also should check the width of your rollover image. It should bethe same width as your items. 
You can also use 
 tags in the item text, for example: 
  var menuItems = [ 
 ["line 1
line 2"], 
]; 
Or you can set this parameter: 
  var noWrap=0; 
Try that. 
Q: Does your java menu software work with Dreamweaver MX 2004 on Mac OS X?
 
A: To create your menu on MAC you can use HTML version of Deluxe Tuner (for MAC OS). You can find it here: 
http://deluxe-menu.com/deluxe-tuner-info.html 
Unfortunately we don't have html version of the Tuner for Deluxe Treeand Deluxe Tabs now. We'll try to create it in the nearest future.
Deluxe Menu wasn't developed as Dreamweaver/Frontpage/GoLIveBuilder 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-menu.com/installation-info.html 
That's all. 
To create and configure your menus use Deluxe Tuner application 
(included into the trial package): http://deluxe-menu.com/deluxe-tuner-info.html
Q: When I want to have the same width of each item I use the individuel styles sometime it works and sometime not
A: See, when you use Individual styles to set the width for your items 
  var bstyles = [ 
 ["bitemWidth=150px"], 
]; 
you should check that you haven't set the exact width for the menu 
  var bmenuWidth="250px"; 
Please, check it.