Recent Questions
Q: Can i install and run this on a server running OS X?
 
A: Yes, you can use Deluxe Menu on Mac OS X. 
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 
Q: I need to work it with PHP/MySQL. I have found some information on it in your Support section, but have problems to understand and wonder if you have more information or a working sample of the loading bar with PHP/ MySQL.
A: Info about generating menu (menu items )from a database, please, see: 
http://deluxe-menu.com/generate-menu-from-database-xml-php-asp-vb-support.html 
 Please, see the example of .php file. 
 The content of .php file depends on your database structure. 
<?php 
// The example for PHP/MySQL. 
// MySQL database has the table "menuTable" that contains data for menu items. 
// The table has the following fields: 
// 1. "text" - item text 
// 2. "link" - item link 
// 3. "icon1" - item icon (normal state) 
// 4. "icon2" - item icon (mouseover state) 
function getMenuItems()
{ 
 $jsItems = ''; 
 // Select all records from table "menuTable" 
 $allItems = mysql_query('SELECT * FROM menuTable;'); 
 // Extract items data from database and build Javascript code for menuItems 
 while ($itemData=mysql_fetch_array($allItems)) 
 { 
 $jsItems .= '["'.$itemData['text'].'", "'.$itemData['link'].'", "'.$itemData['icon1'].'", "'.$itemData['icon2'].'"],'; 
 } 
 // Return Javascript code 
 return $jsItems; 
} 
?> 
<script> 
   var menuParam1 = value1; 
   var menuParam2 = value2; 
   var menuParam2 = value2; 
 ... 
   var menuItems = [ 
 
 <?php 
 // Write Javascript code for menu items 
 echo getMenuItems(); 
 ?> 
 ]; 
</script>
Q: I am evaluating De Luxe menu. We perhaps like to become OEM distributor.
 But I have a question.
 In a website i would like to align 3 menu items to the left of the page and the other items to the right.
 The 3 items to the left have a different style. But all have a fixed width.
 I tried to define a spacer between the items but this didn't work out.
 <script type="text/javascript" 
 src="/webos_net/dmenu/data.js"></script><script 
 type="text/javascript">
   var menuItems = [
 ["Website","/webos_net/default2.aspx?site=website",,,"","_top","0"],
 ["MyNorma","/webos_net/default2.aspx?site=mynorma",,,"","_top","0"],
 ["BackOffice","/webos_net/default2.aspx?site=portal",,,"","_top","1"],
 ["          ","/webos_net/default2.aspx",,,"spacer","","2"],
 ["Zoek","",,,"",'main','3'],
 ["Stamgegevens","",,,"",'main','3'],
 ["Repartitie","",,,"",'main','3'],
 ["Beheer","",,,"",'main','3'],
 ]
 dm_init();
 I also defined itemstyles:
   var itemStyles = [
 //hoofdmenu
 ["itemWidth=50pt","itemBackImage=/images/topmenu1bg.jpg","fontColor=#444444,#444444"],
 //hoofdmenu selected
 ["itemWidth=50pt","itemBackImage=/images/topmenu1bg.jpg","fontColor=#444444,#444444","itemBorderWidth=2","itemBorderColor=#ff0000,#ff0000"],
 //spacer
 ["itemWidth=100%"],
 //default menu
 ["itemWidth=100pt"],
 ];
 Can you provide a java menu samples which shows left and right alignment of menu items is possible? 
A:  Unfortunately it is not correctly to write
["itemWidth=100%"],
in Individual Styles. It won't work. You can set the exact width forthis space, for example:
  var itemStyles = [
 ["itemWidth=50pt","itemBackImage=/images/topmenu1bg.jpg,/images/topmenu1bg.jpg", "fontColor=#444444,#444444","showByClick=0"],
 ["itemWidth=50pt","itemBackImage=/images/topmenu1bg.jpg","fontColor=#444444,#444444", "itemBorderWidth=2","itemBorderColor=#ff0000,#ff0000"],
 ["itemWidth=220px","itemBackColor=transparent,transparent","itemBorderWidth=0", "itemBorderStyle=none,","showByClick=0"],
 ["itemWidth=100pt"],
];
  var menuStyles = [
];
  var menuItems = [
 ["Website","/webos_net/default2.aspx?site=website", "", "", "", "_top", "0", "", "", "", "", ],
 ["MyNorma","/webos_net/default2.aspx?site=mynorma", "", "", "", "_top", "0", "", "", "", "", ],
 ["BackOffice","/webos_net/default2.aspx?site=portal", "", "", "", "_top", "1", "", "", "", "", ],
 ["          ","", "", "", "spacer", "", "2", "", "", "", "", ],
 ["Zoek","", "", "", "", "main", "3", "", "", "", "", ],
 ["Stamgegevens","", "", "", "", "main", "3", "", "", "", "", ],
 ["Repartitie","", "", "", "", "main", "3", "", "", "", "", ],
 ["Beheer","", "", "", "", "main", "3", "", "", "", "", ],
];
Q: The problem is now that I have a scroll bar in the main menus although there is nothing to scroll. 
 Do you have any ideas?
 
A:  You've set the exact width and height for submenus.
  var smWidth = "100"; 
  var smHeight = "250px"; 
  var menuStyles = [ 
 ["smWidth=220px","smHeight=250px"], 
 ["smWidth=200px","smHeight=250px"], 
 ["smWidth=120px","smHeight=250px"], 
]; 
Try to write: 
  var smWidth = ""; 
  var smHeight = ""; 
  var menuStyles = [ 
 [""], 
 [""], 
 [""], 
]; 
There will be no scroll bar in the main menus.