Recent Questions
Q: When a user clicks on a javascript flyout menu item, I want to run a javascript function. 
 How can I do this in the data file? 
A:  You can use your own Javascript code instead standard javascript flyout menu links. For example:
   var menuItems = [
 ["text", "javascript:your_code_here"]
 ]; 
Q: I need a way to change tabs with buttons AFTER THE PAGE IS RENDERED. This means bselecteditem is useless to me at this point. 
 I want to have a button called NEXT on TAB 1, and when you press that button, it switches you to TAB 2. Likewise on TAB 2 I want to have a button called NEXT that when pressed will switch you to TAB 3. 
 I don't want to have to post back to the server to make this work, I want a way of Javascript to change the tab indexes. 
 How can I do this? 
A:  Try to use the following function: 
LTb0(menuN,itemN); 
menuN - menu ID, starts with 0 
itemN - item ID, starts with 0
Q: Is it possible to populate a drop down menu trees from a mysql database?
If so do you have an example please before I go ahead and try/purchase. 
A: 	Unfortunately we don't have working example.
Only this example:
http://deluxe-menu.com/rq-loading-bar-MySQL-support.html
You can use trial version to test the menu at first. Trial version has full functionalityexcept "Trial Version" nag.Q: Do you plan to implement a fix in the cross browser drop down menu for the pointer - many of our users have complained that it is very un-intuitive - surely it must be possible to change the pointer to a hand if there is a link. I have tried putting <a> tags in to the menu labels, but it only changes to a hand if the actual label text is highlighted - it obviously should change whichever part of the box is highlighted? Is there no other workaround? 
A:  If you set the following parameter: 
  var itemCursor="pointer"; 
You'll have the mousepointer being a hand for all itemsin the menu. 
Unfortunately, you can't change cursor type for different items.
But you can write so: 
 ["<a href='http://deluxe-menu.com/'>Home</a>","", , , , , , , , ],
 ["Product Info","", , , , , "0", , , ], 
  ["|What's New","", , , , , "0", , , ], 
In all items with links you should use <a> tag. 
Set this parameter: 
  var itemCursor="default";