Recent Questions
Q: In addition, as you know commercial websites also have to comply with EU regulations regarding disabilities, and I further believe that the current menu cannot be read by screen readers for blind/partially sighted/disabled users. Could you please confirm if this is the case, or if the java pull down menu can in fact be read by screen readers?
A:  Deluxe java pull down menu is 508 compliant, but we don't have the certificate at this moment.
Q: Is there a way to have an automatic line-break for large submenu items? 
I'd prefer not to have scroll bars but automatic line break of long items.  
A: Try to add the following parameter in your data file 
  var tnoWrap=0;
Q: Can I create menus with cross-frame capability using your drop down menu generator?
 With the menu beingin one frame and the submenus opening to the other frame? 
A: See how should you create cross frame menu:
1. To initialize the cross frame menu call dm_initFrame()
function instead of standard dm_init() function within data.js file:
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 - top-to-bottom, 1 - left-to-right; 2 - bottom-to-top; 3 - right-to-left.
So you should create your menu in Deluxe Tuner, save it.
Create html file with your frame set.
Set ID for the first frameset:
<FRAMESET id=frmSet rows=220,*>
<FRAME id=frame1 src="Deluxe Menu Samples_files/cross-frame-horizontal-1.htm"> //menu frame
<FRAME id=frame2 name=frame2 src="Deluxe Menu Samples_files/testlink.htm"> //content frame
</FRAMESET>
Then you should open your data file in any text editor and change
dm_init(); for example to dm_initFrame("frmSet", 0, 1, 0);
You'll find more info here:
http://deluxe-menu.com/cross-frame-mode-sample.html
Q: Is it possible to put PHP, or other scripting languages within the tab menu javascript?
A: See, for each item you should assign the ID property of the content DIV. 
 ["Style Name","contentName", "", "", "", "", "1", "", "", ], 
 ["-","", "", "", "", "", "0", "", "", ], 
 ["Style Description","contentDescription", "", "", "", "", "", "", "", ],
 ["-","", "", "", "", "", "0", "", "", ], 
 ["Style Variations","contentVariations", "", "", "", "", "", "", "", ],
 ["-","", "", "", "", "", "0", "", "", ], 
 ["Empty","", "", "", "", "", "2", "", "", ], 
And on your html page you should create DIV's with such ID. 
 <div id="contentName" style="height: 0%; visibility: hidden;" class="tabPage"> 
 <br><br><br> 
 <p align=center><img src="img/style01_title.gif" width=140 height=90 alt="Glass Style Tabs"></p> 
 <br><br><br> 
 You should paste your content here!!!!! 
 </div> 
You can paste any code within DIV's (PHP, Javascript ...)