Recent Questions
Q: Now I need to work out how to add multiple menu's to a page? Are you able to reference these separately - is this possible. 
 The page that I am creating lists out notes from our system - there is a "options" button to the right of each note - when the cursor hovers over this button I want to dynamically load themenu's. On any page there could be over a 100 of these "option" buttons and the menu that would load from each option button could be different and specific to the note.
 
A:  You can add as many menus as you want on the one page.
You should call 
<SCRIPT type=text/javascript>  var dmWorkPath = "data.files/";</SCRIPT> 
<SCRIPT src="data.files/dmenu.js" type=text/javascript></SCRIPT> 
and then call your data files: 
<SCRIPT src="data.files/data1.js" type=text/javascript></SCRIPT> 
<SCRIPT src="data.files/data2.js" type=text/javascript></SCRIPT> 
<SCRIPT src="data.files/data3.js" type=text/javascript></SCRIPT> 
<SCRIPT src="data.files/data4.js" type=text/javascript></SCRIPT> 
> The page that I am creating lists out notes from our system - 
> there is a "options" button to the right of each note - when the 
> cursor hovers over this button I want to dynamically load the 
> menu's. 
 
You can try to use pop up menus 
http://deluxe-menu.com/popup-mode-sample.html 
You may also generate a menus from a database or XML using any server-side script, e.g., PHP, ASP, VB, etc.
Q: Question is where in the data file configuration or within the menu Tuner would I inseart the icons for individual item labels and center them over the text or other alignments like you did in the horizontal menu on the deluxe-menu.com web site?
 
A: You should write, for example, so: 
 ["<img src='data.files/micon1.gif' width=32 height=32><br> Home","testlink.html", , ,"" , , , , , ],
Q: I am setting up a 3 tab script and each tab opens a new page but the state of the javascript tab menu selected reverts back to the default tab.а Howdo I keep the tab selected when advancing to the next tab (new page)?
A: You should change the selected tab depending on the page you are now. 
This Tabs menu can save pressed item automatically within1 page only. If you open another page, the menu can't remember presseditem. You should do that manually using Javascript and menu parameters(  var bselectedItem) or using any server-side script (php, asp, etc.) 
Deluxe Tabs doesn't support API functions which can return theselected tab. 
So, you can set "bselectedItem" parameter based on your link beforeyou call data.js file. 
For example, move "bselectedItem" parameter from data.js file to yourcode. 
<TD vAlign=top align=left> 
/* Select Tab */ 
<script type="text/javascript" language="JavaScript1.2"> 
   var bselectedItem=<?php echo $seltabs; ?>; 
 </script> 
 <SCRIPT src="data.js" type=text/javascript></SCRIPT>
 </TD> 
You should define seltabs using server side script.
Q: After creating a menu using Deluxe Tuner, the exported menu.htm file, when viewed in IE, creates the “To help protect your security, Internet Explorer has restricted this webpage from running scripts or ActiveX controls that could access your computer. Click here for options…” 
What do I do to prevent the menu from causing this error message?
 
A:  You should adjust your browser settings.
Tools/Internet Options/Advanced Options/
and set
"Allow active content from files to run on My Computer".
There is no way to enable these preferences automatically, in othercase there are no reasons to create security preferences.