Recent Questions
Q: Thanks, we tried giving   var pressedItem=0; and the script as below:
 <script type="text/javascript">
 onload=setPressed;
 function setPressed()
 {
 dm_ext_setPressedItem (0,8,0,0);
 }
 </script>
 We are facing 2 problems
 1) Two menus are getting highlighted, the "Home" and the dynamic html menu which is called onLoad using dm_ext_setPressedItem (0,8,0,0); function)
 2) The submenu of the dm_ext_setPressedItem (0,8,0,0) is not getting highlighted. 
A:  Try to set
  var pressedItem=-2;
dm_ext_setPressedItem function has a following parameters:
function dm_ext_setPressedItem (menuInd, submenuInd, itemInd, recursion, parentOpen)
So, if you want to highlight item in the submenu you should use itemInd of this item (notitemInd of the parent item).
For example you want to highlight submenu item of the 'Manage Users' parent item with
itemInd=15.
You can find more info about dynamic html menu indexes here:
http://deluxe-menu.com/highlighted-items-sample.html#ind
So you should write the function in the following way:
dm_ext_setPressedItem (0, 3, 15, 1, 1)
menuInd = 0 if you have only one menu on the page
submenuInd = 3, see how to determine submenuInd in the table
 http://deluxe-menu.com/highlighted-items-sample.html#ind
itemInd = 15, see how to determine itemInd in the table
 http://deluxe-menu.com/highlighted-items-sample.html#ind
recursion = 1, to highlight parent items
parentOpen = 1, to open the submenu with the selected item.Q: We had to activate the tcloseExpandedXP to 1.
 So far, that is OK. But as soon as we do so, The main menu-titles are aligning to the LEFT side! We could not get them to align to right as needed.
 Any idea how this could be fixed? 
A: You can try blank images before the top-menu items. 
 ["<img src='blank.gif' width=84 height=12>Text","", , , , , , , , , , ], 
  ["|Text","general/forms/form01.php?c2=80&c3=250&fa=1", , , , , "fmain", "5", , , , ],
  ["|Text","general/forms/form01.php?c2=80&c3=0&fa=6", , , , , "fmain", "5", , , , ], 
  ["|Text","general/forms/form01.php?c2=80&c3=0&fa=2", , , , , "fmain", "5", , , , ], 
  ["|Text","", , , , , , "5", , , , ], 
 ["<img src='blank.gif' width=44 height=12>Text1","", , , , , , , , , , ], 
 
Q: Submenus of my javascript dynamic menu are opening higher than they should and I cannot figure out why the position setting has no effect. 
A: 	 Try to set the following parameter:
  var subMenuVAlign="top";Q: I keep getting this javascript error: "smMovable is undefined" in my javascript rightclick menu.
 I am using the development version no source code. I only get the error when adding sub menu items. When it only has the top level menu items everything works fine. I have attached the script, which the portion I generate works fine when I open it using the deluxe tuner application. I am generating the menu from .Net. 
 I am also attaching the generated html file.
 Any help with this would be appreciated. do I add padding around a top menu item? 
A: Now you have the following parameters:
  var moveImage=";
  var transOptions=";
It is not correct. You should write:
  var moveImage='';
  var transOptions='';