Recent Questions
Q: We use IFrames and Frameset through out our program. Will Deluxe-Menu and Deluxe-Tabs work for us.
 Will this work for us, using the layout below. Menu will be in frame3 and tabs in frame4. Should pop up in frame5. 
       <frame>    <frame1>     <frame2> 
  <frame3-Deluxe-Menu>    <frame4-Deluxe-Tabs> 
 <frame5 - Content and more IFrames and Framesets>
 
A: Deluxe Menu doesn't work with <IFrame> objects. It works with<frameset> objects only. All it can to do with <IFrame> is to loadpages into it. 
You should use standard installation for the menu (cross-frame mode). 
See more info here: 
http://deluxe-menu.com/cross-frame-mode-sample.html 
http://deluxe-menu.com/data-samples/cross-frame-horizontal-1-sample.htm 
Deluxe Menu and Deluxe Tabs will work fine in such frame structure. 
Q: I developed a little test dhtml menu slide tree. For the items "Aktivitaeten Auswahl" and "Kontakt Auswahl" I have no subitems. The item line shows a little button with double arrows.
 I would like to get rid of these buttons, because there are no subitems.
 How can I do that?
A: You should create Individual XP Style and apply it for these items.
  var tXPStyles = [
 ["tXPTitleBackColor=#D9DAE2","tXPTitleBackImg=data-quelle.files/xptitle2_s.gif", "tXPExpandBtn=data-quelle.files/right.gif,data-quelle.files/right.gif,data-quelle.files/right.gif,data-quelle.files/right.gif"],
];
Q: We are implementing your licensed drop down menu in dhtml on our new site and it does not appear to work in Firefox.
A:  Now you have:
  var transparency="";
it is not correct.
You should set, for example:
  var transparency="100";
Try also to set:
  var itemPadding="0px 15px 0px 15px";
Q: I need to be able to highlight the selected menu item of the sliding drop down menu. 
A: Deluxe Menu has only two states normal and mouseover.
Try to do the following things:
- delete   var pressedItem=1; parameter from your data file
- set correct parameter on each page before you call data file, forexample:
<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>
<script type="text/javascript">  var pressedItem=3;</script>
...
<script type="text/javascript" src="menudir/data.js"></script>
You can also set a pressed item using Javascript API:
function dm_ext_setPressedItem (menuInd, submenuInd, itemInd, recursion) 
Sets a current pressed item. 
menuInd - index of a menu on a page, >= 0. 
submenuInd - index of a submenu, >= 0. 
itemInd - index of an item, >=0. 
recursion = true/false - highlight parent items. 
But notice, to use dm_ext_setPressedItem() you should know ID of selected item and subitem. 
You can't get this ID after you reload your page. That is why you should write your own code on PHP.