Recent Questions
Q: In the item window, it says "use Ctrl jey to slect and copy items" But when I try it doesn't work. 
I use Ctrl C and Ctrl V
 
A: To select a group of items you can use Shift and Ctrl keys. 
To rename an item click on it and hold a mouse cursor for a second. Or use item parameters window. 
To move items select items you want and use a mouse drag'n'drop method. 
To copy items select those you want and use a mouse drag'n'drop method holding a Ctrl key. 
Also you can use a contextual menu - a right mouse click on the list of items.
Q: I am using a licensed copy of Deluxe Menu and am extremelyhappy with the dhtml mouseover menu and the functionalities provided. Great Work!! 
 I wanted to know how to hide/ disable a dhtml mouseover menu item for a particular user/roleid in .ASP.Net1.1
 Kindly help me out with this problem as soon as possible. 
A: You can find more info here:
http://deluxe-menu.com/dynamic-functions-sample.html
You can try to use API functions in that case:
function dm_ext_changeItemVisibility (menuInd, submenuInd, itemInd, visibility)
To disable items you should set the target parameter to "_".
You can try to use the following function
function disable() {
 dm_ext_changeItem(0, 1, 1, ["", "", "", "", "", "_"]);
 }
to disable your dhtml mouseover menu items.
Q: This is probably a really basic question, but I was wondering if
 your dhtml menu maker makes it possible to determine the direction of the
 drop down menu. In other words, my menu is at the bottom of the page
 and I want the drop down list to actually go "up," not down.
 Is that possible with your software?
A: Yes it is possible.
You should use the following parameter
  var subMenuVAlign="top"; //downward
  var subMenuVAlign="bottom"; //upward
  var subMenuAlign="left"; //from left to right
  var subMenuAlign="right"; //from right to left
Q: When using javascript pop window is it possible to gray out the page except pop up so users can't use any controls until they close pop up window?
A: Try to set that parameter:
modal:1,