- Personal CSS styles for separate menu elements - Hundreds of pre-designed templates - AJAX menu loading - loads web menu data from the server "on-the-fly". - Several menus on one page - Deluxe Tuner - visual interface to create and modify dhtml menus easily and in no time. - Unlimited number of sub levels - Status string shows item labels - Search feature - add the search area in the menu and type symbols.
Use images for backgrounds of submenus and items, icons, arrows. Using web images you can create menus completely based on graphics.
Design both horizontal and vertical menus and submenus with any amount of menus on a single page.
Place any HTML code inside the menu item - be it a flash-object, form, picture, or text. This ability lets you to build various menus of any complexity.
Submenus can be shown in 4 ways: - From left to right and also from left to right + upwards. - From right to left and also from right to left + upwards (e.g. for right-to-left languages).
Q: How can I add a separator to the vertical menu using the dynamic functions? It seems as though the only way to get a separator into the menu is by defining itbefore hand, but the website I'm building will require me to reload themenus dinamically, and I'm losing the ability to put separators on it.
A:You should add items using the following function:
function dm_ext_addItem (menuInd, submenuInd, iParams) or function dm_ext_addItemPos (menuInd, submenuInd, iParams, Pos)
Find more info: http://deluxe-menu.com/functions-info.html
Set the following parameter: var dm_writeAll=1;
So, you should write: dm_ext_addItem(0, 4, ["|-", "", "", "", "", "", "", ])
Q: How can I upgrade to Deluxe Menu v2.0? Now I'm using v1.14.
A: How to upgrade to v2.00 --------------------------------------------------------------- You can download the licensed engine .js files from the same link in your license message. Deluxe Menu v2.00 has new parameters and features. To upgrade to v2.00 you should do the following.
Step 1.     1.1 For Windows users       a. Run Deluxe Tuner v2.0       (can be found in the trial menu package v2.0       http://deluxe-menu.com/deluxe-menu.zip).       b. Open menu data file (.js file where menu parameters are placed): select File/Open…       c. Save the file: select File/Save, then click "No" button when the dialog box appears.
    1.2 For other OS users       a. Open menu data file (.js file where menu parameters are placed) in a text editor.       b. Make sure that the following variables exist in the data file:
      var keystrokes = 0;       var dm_focus = 1;       var dm_actKey = 113;
      var dynamic = 0;       var smHideOnClick = 1;       var itemAlignTop = 'left';       var smSmartScroll = 1;
      var dmAJAX = 0;       var dmAJAXCount = 30;       var dmRTL = 0;       var dmObjectsCheck = 0;       var menuBackRepeat = "repeat";       var menuHeight = "";       var transDuration2 = 200;
If one of the variables doesn't exist - add it at the beginning of the file.
      c. Save the file.
Step 2. Now open HTML-page that contains Deluxe Menu.
Step 3. Replace existent tags of the menu by the following code:
Step 4. Save HTML-page.
Step 5. New engine v2.00 has 7 .js files. They are:       - dmenu.js       - dmenu4.js       - dmenu_add.js       - dmenu_dyn.js       - dmenu_key.js       - dmenu_cf.js (new v2.00)       - dmenu_popup.js (new v2.00)
Replace all old .js files by the files from v2.00.
Try that.
Q: Currently, I have Deluxe Menu installed on my website. However, I have noticed that the javascript mouseover menu picture width for the top level icon changes. For example, the mouse over picture for "Beauty" is one length whereas the mouse over icon for "Home & Garden" gives me one and a half pictures. I have illustrated this in the attachment.
Please could you advise me on how I could resolve this problem.
Thank you for taking your time to read this email. I look forward to receiving your reply.
A: You can try to use the following parameters to use combinedbackground for your items:
var beforeItemImage = [,]; //left-side image for normal and mouse over state var itemBackImage = [,]; //background or image for normal and mouse over state var afterItemImage = [,]; //right-side image for normal and mouse over state var beforeItemImageW = ''; var afterItemImageW = ''; var beforeItemImageH = ''; var afterItemImageH ='';
But you should create a small images in any Graph Editor, for example: button_n_back.gif button_n_left.gif button_n_right.gif button_o_back.gif button_o_left.gif button_o_right.gif
Q: Very interested by your product, I want to know, before buy, if I can call javascript function when the user click on a menu Items;
you have this example, but I want the possibility to call a javascript function in the client side :
var menuItems = [ [text, "javascript:alert('Hello, world!')", icon1, icon2], ];
Is it possible, if yes could you give the sample, because Milovic menu have a javascript:function call, what about your product ?
Thank you for the answer.
A:You're able to use Javascript for each item, for example:
var menuitems = [ ["item text", "javascript:your_code_here"] ];
Unfortunately, you can't assign onmouseover/onClick event to each item. However, you can achieve this by using standard html objects within items, for example:
var menuitems = [ ["<div onClick='your_code_here'>item text</div>", "index.html"] ];