- Submenus automatically scrolls - AJAX menu loading - loads web menu data from the server "on-the-fly". - Status string shows item labels - Transition #14 - "fade out" effect - 85% transparency for sub menus - Text aligned to left - Sound support! - Image arrows
Good menu is an essential part of website commercial success. If people can't find their way around the site, they will fast give up seeking and retire, never to return. So, it's extreme serious that your website has a accurate, precise, prompt, and navigation of immaculate appearance. Don't let your web site guests to get lost. Try Deluxe Menu!
When I run the site from my local PC with the menu, I don't get this error? Could you possibly suggest why? I can't find anything on your site.
A:Try to check all you paths. original setting:
var tmenuBackImage=""; var titemBackImage=["",""];
changed to:
var tmenuBackImage="images/blank.gif";
var titemBackImage=["images/blank.gif","images/blank.gif"];
Try to specify units in "px". var tmenuWidth = "180px"; It's necessary to specify exact value for Mozilla browsers. It helpsto position menus correctly.
You should set this parameter: var tmenuHeight = "auto"; Now you have such parameters in the menu: ["||24","C:/Documents and Settings/Paul/My Documents/My Web Sites/site.id.au/guide/24.htm", , , , , "main_frame", , , , , ], ["||30 Days","C:/Documents and Settings/Paul/My Documents/My Web Sites/site.id.au/guide/30days.htm", , , , , "main_frame", , , , , ], ["||Battlestar Galactica","C:/Documents and Settings/Paul/My Documents/My Web Sites/site.id.au/guide/battlestarg.htm", , , , , "main_frame", , , , , ], ["||Blade","C:/Documents and Settings/Paul/My Documents/My Web Sites/site.id.au/guide/blade.htm", , , , , "main_frame", , , , , ], ["||Eureka","C:/Documents and Settings/Paul/My Documents/My Web Sites/site.id.au/guide/eureka.htm", , , , , "main_frame", , , , , ], ["||I Pity the Fool","C:/Documents and Settings/Paul/My Documents/My Web Sites/site.id.au/guide/ipitythefool.htm", , , , , "main_frame", , , , , ],
You cannot use local paths on your website. Please, correct it. < br>You should write for example: ["||24","site.id.au/guide/24.htm", , , , , "main_frame", , , , , ], ["||30 Days","site.id.au/guide/30days.htm", , , , , "main_frame", , , , , ], ["||Battlestar Galactica","site.id.au/guide/battlestarg.htm", , , , , "main_frame", , , , , ],
Try to use also the attached engine .js files on your server.
Q: Is it possible to use more than one Menu in one Site, for example with
<script type="text/javascript"> var dmWorkPath1 = "menue/produkt.files/";</script> <script type="text/javascript" src="menue/produkt.files/dmenu.js"></script> <script type="text/javascript"> var dmWorkPath2 = "menue/navigation.files/";</script> <script type="text/javascript" src="menue/navigation.files/dmenu.js"></script>
unfortunately this syntax doesnґt work
A:You can use as many menus as you want on the one page.
But you should call dmWorkPath parameter and dmenu.js file only onceon the one page.
You cannot write dmWorkPath1 and dmWorkPath2. Youir menu won't workcorrectly in that case.
You should write <!-- Deluxe Menu --> <noscript><a href="http://deluxe-menu.com">Javascript Menu by Deluxe-Menu.com</a></noscript> <script type="text/javascript"> var dmWorkPath = "menudir/";</script> <script type="text/javascript" src="menudir/dmenu.js"></script> <!-- (c) 2007, http://deluxe-menu.com -->
and call several data files: <script type="text/javascript" src="menudir/data1.js"></script> ... <script type="text/javascript" src="menudir/data2.js"></script> ... <script type="text/javascript" src="menudir/data3.js"></script>
Q: Typically in order to generate a menu with multiple layers I’d put a pipe character in front of the menu text.. For example:
How can I generate multiple levels of the menu with javascript?
A:I suppose that your code is not valid dm_ext_addItem(0, 0, ["|Teacher Page", "/admin/handoutadmin.php?type=$type", "", "", "", "_new", ""]);
Try to write it in the following way: dm_ext_addItem(0, 0, ["|Teacher Page", "/admin/handoutadmin.php?type=", "", "", "", "_new", ""]);
Q: I am using Javascript Menu. Deluxe Menu. v1.12 How can I upgrade to v.2.0?
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:
<noscript><a href="http://deluxe-menu.com">Javascript Menu by Deluxe-Menu.com</a></noscript>
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.