Recent Questions
Q: Does your product generate the page code or is t a dll I have to use? Reason I ask is because we store our menu stuff with image references in a db. If your product outputs code for the menu, then I can use that and in my own code I can place/substitute values and work with it from there.
A: We have an .exe file - Deluxe tuner.
It generates .js files with menu parameters.
You can also export your menu to .html file.
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) 2006, 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>
Unfortunately we don't have examples with ASP and SQL.
The example of the menu working with PHP/MYSQL you can find here:
http://deluxe-menu.com/rq-loading-bar-MySQL-support.html Q: Can dhtml menu scripts be integrated into Expression Web?
A: Deluxe Menu wasn't developed as Dreamweaver/Frontpage/Microsoft Expression Web 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.htmlQ: If i use windows tree menu and published on my web site it is default all menu and submenu are opened .
 I want that all html tree menu is default closed if user click on main menu it will be opened submenu. 
Please wich parameters i have to change.
A: You should set the following parameter:
  var texpanded=0;
Check also that you don't have '+' sign before item's text in the top items, for example:
 ["+Home","", "", "", "", "", "", "0", "", ],
 ...
 ["+Item1","", "", "", "", "", "", "0", "", ],
Q: There seems to be a "glitch" when I use Firefox. 
 I have rebuilt the page twice but I always end up with themenu floating to the left, instead of under the main menu (the second or third mouseover will correct the issue). Also, sometimes I have to mouseover twice before the submenu comes up (in I.E.). 
 I have validated...however I wondered if there could be a conflict in the javascripting (yours and mine). Any suggestions? 
A: The reason is in your <!DOCTYPE>.
Try to specify units in "px".
  var menuWidth="780px"; 
  var menuHeight="27px"; 
  var smWidth="200px"; 
  var smHeight="200px"; 
It's necessary to specify exact value for Mozilla browsers. It helpsto position menus correctly. 
You can also try to set the following parameter:
  var dm_writeAll=1;