Recent Questions
Q: How do I expand the length of the vista html drop menu tab images to accommodate longer text? If the text is "Special Event Programs", the arrows are outside the tab in another partial one.  I am using the Vista style tabs (black_blue / tealblack). 
 Is there any way other than definition of new image files to get more color combos? 
 Can I change the text size in the menu tabs?  When I use the Tuner, it has no effect. 
A: Try to use image-based menu.
Set:
  var menuWidth="92px";
  var menuHeight="";
and create the following style:
  var itemStyles = [ 
["itemBackImage=WANmenu.files/btn_magenta-back.gif,WANmenu.files/btn_magentablack-back.gif",
"beforeItemImage=WANmenu.files/btn_magenta-left.gif,WANmenu.files/btn_magentablack-left.gif","afterItemImage=WANmenu.files/btn_magenta-right.gif,WANmenu.files/btn_magentablack-right.gif","beforeItemImageW=10","afterItemImageW=10","beforeItemImageH=21","afterItemImageH=21",
"itemBorderWidth=0","fontStyle=normal11px Tahoma","fontColor=#FFFFFF,#FFFFFF"],
];
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", "", "", ],
Q: I'm looking for a menu system that can be placed in a cell. I think is easy and fast way to make pages. Is is possible with your product? 
A:  Thanks for your interest in our products.Yes you can paste the menu inside the <div> or <table> tag. 
Q: I’m looking for a popup multilevel menu. I think from your website that your menus will do this for but I can’t figure out using the trial version how to do it. 
 I have an image map of a graphic and I need to call my javascript pop out menu from an OnMouseOver in the image map… 
<areahref="#"onmouseover=""shape="rect"coords="120, 124, 180, 136"> 
 Obviously I can’t put the standard <script>… as described in your sample. 
 Is there a setting that I need to change or is this not possible with your javascript pop out menu. 
A:  You can try to use Popup Menu, see more info:
http://deluxe-menu.com/popup-mode-sample.html
See how you should call pop up menu
 <img src="data-samples/images/popup_pic.gif" width=180 height=119 onmouseover="return dm_popup(0, 2000, event);" onClick="return dm_popup(1, 2000, event);" style="cursor: pointer;"><br>
You can create your javascript pop out menu using Deluxe Tuner application.