Recent Questions
Q: I have menus generated by you deluxe menu package . They look fine on all my computer but look bad on my friends computer. 
 Can this be fixed?
 
A: Thanks for your interest in our products. 
Try to specify all units in "px", for example: 
  var menuHeight="22px"; 
Try to set exact width for menu item 
  var menuWidth="736px"; 
Try also not to set 
  var smWidth="0"; 
  var smHeight="0"; 
Please, see the attached data file. 
You can use additional parameters to make menu paths absolute:
  var pathPrefix_img = "http://domain.com/images/"; 
  var pathPrefix_link = "http://domain.com/pages/"; 
These parameters allow to make images and links paths absolute. 
For example: 
  var pathPrefix_img = "http://domain.com/images/"; 
  var pathPrefix_link = "http://domain.com/pages/"; 
  var menuItems = [ 
 ["text", "index.html", "icon1.gif", "icon2.gif"], 
]; 
So, link path will be look so: 
http://domain.com/pages/index.html 
Images paths will be look so: 
http://domain.com/images/icon1.gif 
http://domain.com/images/icon2.gif 
Please, try to use these parameters.
Q: Could I create a function that displays thetab that the user clicked in the left tab menu.
 These tabs are all within the same window, sothe page will always be the same. 
Just need a function to make differenttabs appear.
 
A: Unfortunately Deluxe Tabs doesn't support API functions now.
You can use the following function to open specific tab:
dtabs_itemClick(menuInd,itemInd);
where
menuInd - index of a tab menu on a page, >= 0.
itemInd - index of a item, >=0.
For example:
<DIV onClick="dtabs_itemClick(0,2)" style="width: 200px; border: 2px solid #000;">Click to open the third tab</DIV>Q: How do I get the sub-menus to open in the 2nd frame of a 3 vertical frameset.
 The menu is in the first frame. I want the sub-menus to open in the 2nd frame. I don't see how to set that parameter.
 
A:  You should check your dm_initFrame() function. 
dm_initFrame(framesetID, mainFrameInd, subFrameInd, orientation); 
framesetID - id attribute of the frameset; 
mainFrameInd - index of the main frame (where the top-menu is placed), >=0;
subFrameInd - index of the subframe (where the submenus will be shown), >=0; 
orientation - frame orientaion: 0 - horizontal, 1 - vertical. 
You should write it, for example 
dm_initFrame("frmSet", 0, 1, 0);
Q: By the way, this is an issue at your site, too... 
 Have a look at 
 http://deluxe-menu.com/objects-overlapping-sample.html in 
 FireFox - when hovering over the Product Info or Samples buttons, the Deluxe Menu flash element disappears behind the drop-down menu. 
 I notice this pages states: "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.".
 
A: Unfortunately, it is really so. 
Now there is no work around for this. 
We'll try to fix this bug in the future version of Deluxe Menu.