Recent Questions
Q: Will the java menu api changing the node image on the fly in real time? 
A: Yes, API functions will change the node image on the fly.
Q: I would like to know if I can use Deluxe Menu to create pulldown menus on a Mac (Mac OSX). Thank you. 
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
Q: I'm having difficulty understanding how to set up css drop down menus. The differences between menuStyles, itemStyles, CSS and CSSText is very unclear, and doesn't seem to be well documented. 
 Do you have any better documentation or writeup on using this feature?
A:  No, unfortunately we don't have additional documentation. You can findall info on our site. 
We have several examples of the menus using css. 
You should set   var cssStyle=1; parameter and then assign your stylesto the items. 
  var cssSubmenu is a CSS class name for all submenus. You can set, forexample, background color, background image, borders for all submenus. 
  var cssItem is CSS class names for all items (normal state, mouseoverstate) in the top menu and submenus. 
  var cssItemText is CSS class names for text of all items (normalstate, mouseover state) in the top menu and submenus. 
It's possible to appoint individual CSS styles for separate elements of the menu using individual item styles and individual submenu styles.
Q: We are using your menu in a website here under development:
 There is a problem with mac browsers - safari and firefox. The flash stops and goes blank when the html menu dropsdown.
 We have tried numerous fixed including the one outlined on your website here: 
http://deluxe-menu.com/objects-overlapping-sample.html Here is the link to our html menu file link/file to the menus: -> http://domain.org.au/js/menu
 Any assistance you can provide would be appreciated. 
A:  Now you hide your flash on MAC using the following function:
function dm_ext_ruleObjectHide()
{ 
// Safari detect 
 if ((parseInt(navigator.productSub)>=20020000) && (navigator.vendor.indexOf('Apple Computer') != -1) && (navigator.product=='Gecko')) 
 return true; 
 else 
 return false; 
}
Try to delete this function, try to set the following parameter also:
  var dmObjectsCheck = 0;