Recent Questions
Q: Is it possible to integrate a search window for my customers like your "standart tree menu" , and what is the code for this function  ?
 
A:  To add input area and a button you should write your menu item in thefollowing way:
 ["|Search <input type=text style='width:80px;height:17px;font:normal 10px Tahoma,Arial;'>  
 <input type=button value='Go' style='width:30px;height:17px;font:normal 10px Tahoma,Arial;'>", "", "", "", "", "", "", "0"],
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: I want to know how I can set a menu item to pressed 
when a page is loaded in javascript drop down menus. 
A: You should 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.
Q: I'm having a difficult time figuring out how to get content into each "tab" for the dhtml tab menus.
 I see that content can be put into div-tag or frame, but how is it referenced in tab so whensomeone clicks the tab, 
it shows that content?
 Is it the link variable in the MenuTuner? Can the content be a separate html page? 
A: See in Deluxe Tabs there are two modes:
1.   var tabMode=0;
You can create only one level of tabs and assign Object Id's of the
DIV's to show when you click on the tab.
 ["XP Tab 1","content1", "", "", "", "", "", "", "", ],
 ["XP Tab 2","content2", "", "", "", "", "", "", "", ],
 ["XP Tab 3","content3", "", "", "", "", "", "", "", ],
 ["XP Tab 4","content4", "", "", "", "", "", "", "", ],
 2.   var tabMode=1;
You can assign only links in this mode.
You should create top level items with subitems.
 ["XP Tab 1","", "", "", "", "", "", "", "", ],
  ["|Link 1_1","http://deluxe-tabs.com", "", "", "", "", "0", "", "", ],
  ["|Link 1_2","testlink.htm", "", "", "", "", "0", "", "", ],
  ["|Link 1_3","testlink.htm", "", "", "", "", "0", "", "", ],
  ["|Link 1_4","testlink.htm", "", "", "", "", "0", "", "", ],
  ["|Link 1_5","testlink.htm", "", "", "", "", "0", "", "", ],
 ["XP Tab 2","", "", "", "", "", "", "", "", ],
  ["|Link 2_1","testlink.htm", "", "", "", "", "0", "", "", ],
  ["|Link 2_2","testlink.htm", "", "", "", "", "0", "", "", ],
  ["|Link 2_3","testlink.htm", "", "", "", "", "0", "", "", ],
  ["|Link 2_4","testlink.htm", "", "", "", "", "0", "", "", ],
  ["|Link 2_5","testlink.htm", "", "", "", "", "0", "", "", ],
 ["XP Tab 3","", "", "", "", "", "", "", "", ],
  ["|Link 3_1","testlink.htm", "", "", "", "", "0", "", "", ],
  ["|Link 3_2","testlink.htm", "", "", "", "", "0", "", "", ],
  ["|Link 3_3","testlink.htm", "", "", "", "", "0", "", "", ],
  ["|Link 3_4","testlink.htm", "", "", "", "", "0", "", "", ],
  ["|Link 3_5","testlink.htm", "", "", "", "", "0", "", "", ],
You can use Object ID as well as Link in both modes. Use the following prefixes within item's link field:
"object:" - means that there is object id after it; 
"link:" - means that there is a link after it.
"javascript:" - means that there is a javascript code after it, for example:javascript:alert(\'Hello!\')
So, you should write for example:
  ["|Link 1_1","object:Content1_1", "", "", "", "", "0", "", "", ],