Recent Questions
Q: My menu is working very well in IE 7.0, and almost very well in FF 2.0. 
 In your faq, you mention the following: 
 Fix for flash in Firefox!
 If you don't want the flash to hide under submenus in Firefox you should do the following things: 
 However, I do want the flash to hide under submenus, like it does in IE when I set   var dmObjectsCheck = 1; 
 My menu is beneath my flash. 
A:  If for some reasons a submenu can't drop down over an object the latter will be hidden for a time when the submenu is shown. 
If you don't want to have such effect you should follow these steps. 
http://deluxe-menu.com/objects-overlapping-sample.html
Q: I am in the process of evaluating the deluxe-menu product V3.2.7.16 and have created a simple HTML using the deluxe-menu Vista Style #6. This works great and displays with the animation in IE and also using FireFox V2 with IE tabs.. However, in basic FireFox and Safari, the javascript menus display but without the swirling animation. Pls advise !!
A: Filters and transitional effects are features of Internet Explorer5.5+ only.
See more info here:
http://www.deluxe-menu.com/filters-and-effects-sample.html
Q: I love this one: 
http://deluxe-menu.com/data-templates/vista-style-03-template-sample.html Do you have vertical orientation of this java menu example, please? 
A: To create vertical drop down menu you should set the followingparameter:
  var isHorizontal=0;
Please, try the trial version. Use Deluxe Tuner to create your menu.You can find this template in the Templates window.
Q: I recently purchased DeluxeMenu for a project I'm working on and a new requirement has been submitted. 
I am looking for a way to dynamically affectthe contents of menu javascripts 
after it's been rendered(displayed) in the browser.
Can this be accomplished with this component?
A: 1) You can use API functions to affect items dynamically:
http://deluxe-menu.com/functions-info.html
2) Generate your menu items dynamically from database.
Unfortunately we don't have working example with ASP.
You may generate a menu from a database or XML using any server-side script, e.g., PHP, ASP, VB, etc.
However, these scripts don't work inside of Javascript .js files, so,
you should move parameters of a menu from a .js file into an html-page, e.g.:
<!-- Deluxe Menu -->
<noscript><a href="http://deluxe-menu.com">Javascript Menu by Deluxe-Menu.com</a></noscript>
<script type="text/javascript">  var dmWorkPath = "menudir/";</script>
<script type="text/javascript" src="menudir/dmenu.js"></script>
<!-- (c) 2008, http://deluxe-menu.com -->
<script type="text/javascript" language="JavaScript1.2">
 // and describe parameters of a menu
   var parameter1=value1;
   var parameter2=value2;
 etc.
   var menuItems = [
 // here you generate items using server-side scripts (php, asp, vb, etc.)
 ];
</script>>
The example of the menu working with PHP/MYSQL you can find here:
http://deluxe-menu.com/rq-loading-bar-MySQL-support.html