Recent Questions
Q: I recently downloaded the trial version of Deluxe Menu-Deluxe Tree and Deluxe Tabs. I am very, very pleased with your product!! I wish to purchase Deluxe Menu & Tree & Tabs & Popup Window & Calendar Single Website License Product # 300094393.
 However, before I do, I have a few questions first.
 Question #1
 I created a DeluxeTree Menu that is very large due to the amount of pages in my website and tested it on my website. It works fine. Of course I have created and saved a .js file and still have to add much more submenus to it. When I purchase the full version of javascript context menu will and begin to modify this .js file that I created will the "Trail Version" logo disappear? I hope so because it would be quite a task to have to re-create this file.
 Question #2
 I also created a Deluxe Menu in a cross frame structure and placed the menu in the top frame. When I tested it and click on the menu button, the submenus drop down but do not appear in the frame below. They remain in the top frame forcing me to resize the top frame to see the submenus. When I viewed the example on your website for the cross frame structure, the examples show the submenus overlapping and appearing on the frame below the top frame. How do I fix this?
 Thank you for time, looking forward to purchasing your product. 
A:  1) There is no need to create your javascript context menu after the purchase.
You'll use new engine files only.
The purchased version of Deluxe Menus doesn't have nag messages.
You'll see "Incorrect Key" message on a local machine but you won't see it on a registered domain.
2) You should install the menu in a cross-frame mode, see more info here:
http://www.deluxe-menu.com/cross-frame-mode-sample.html
Click "Show additional info" button.
Q: I am evaluating your Deluxe Tuner / Tab program and was wondering how to add content below the tabs, like you have on your site. 
 You have the tabs, then a content area below each tab. How is this done with your product. 
A:  You should use ID attribute of object to show in the second parameterof bmenuItems. You set it in the "Item Parameters" window ("Link"parameter). 
You should also set: 
  var tabMode = 0; 
So, you'll have, for example, the following bmenuItems: 
 ["tab text","div1", ...], 
 ["tab text","div2", ...], Here "div1" and "div2" is IDs of objects within your html page, for example: 
 <div id="div1">text 1</div> 
 <div id="div2">text 2</div> 
You can also see examples, which you can find in the trial package.
Q: When using the tab menu css the third item in the second tab seems to have a mind of its own.а will not take the attributes of all other tabs. 
 Have tried to force it to comply be creating an individual style just for that button...but that doesn't work either.
 have spent (wasted) much time trying to get this to work.а What is the problem?ааа Very frustrated.
A:  This tab differs from other tabs because it is selected tab. You'veset:
  var bselectedSmItem=10;
You can try to set it in the following way: 
  var bselectedSmItem=0;
Q: I downloaded "DeLuxe Menu" and try to make a menu dynamic. I was having the impression, that every item could have it's own color. But nowhere in de program could I find how this had to be done. Every time I changed the color, weather it was under Appearance or Item Appearance, the color of the whole menu was changed.
 Before I decide to buy your product, I need to know if separate coloring for the menu dynamic is possible.
A: You can create Individual Item style and assign it for the top items,for example:
  var itemStyles = [
	["itemBackColor=#8080FF,#FFFF80","itemBorderWidth=1","itemBorderStyle=solid,solid", "itemBorderColor=#000080,#FF8000","showByClick=0"],//style0
	["itemBackColor=##FFFFF,#000000","itemBorderWidth=1","itemBorderStyle=solid,solid", "itemBorderColor=##AA0000,#0000EE","showByClick=0"],//style1
 ];
  var menuItems = [
 ["Item 1","", "", "", "", "", "0", "", "", "", "", ], //style0
 ["Item 2","", "", "", "", "", "1", "", "", "", "", ], //style1
  ["|Item 3","", "", "", "", "", "", "", "", "", "", ],
  ["|Item 4","", "", "", "", "", "", "", "", "", "", ],
 ["Item 5","", "", "", "", "", "0", "", "", "", "", ], //style0
  ["|Item 7","", "", "", "", "", "", "", "", "", "", ],
  ["|Item 8","", "", "", "", "", "", "", "", "", "", ],
 ["Item 6","", "", "", "", "", "1", "", "", "", "", ], //style1
];