- Text aligned to left - Submenus dropdown on mouseover - Deluxe Tuner - visual interface to create and modify dhtml menus easily and in no time. - AJAX menu loading - loads web menu data from the server "on-the-fly". - Horizontal or vertical orientation - Transition #14 - "fade out" effect - Image arrows - Special JavaScript API for changing javascript menu "on-the-fly"
Setup menu parameters manually or using De Luxe Tuner. Then add some rows of a code within html page code and your menu is ready!
Use special Java Script methods for: Dynamic changing of items (link, text, icons, arrows and even individual style!). Addition/removing of items or submenus. Disabling and enabling menu items. Getting the info on every submenu, menu, and items. Changing appearance of items. Other coding tricks.
Cross-frame mode lets you to construct full-featured dhtml menus on the pages with frames. But for all that frame set it's not necessary to insert any additional code into all the pages - just specify several extra menu parameters.
Ability to handle the menu from the keyboard via keystrokes.
Q: I downloaded the trial version of deluxe-menu. I created a four tab menu using the tab'stab menu generator; so far so good. I read the tutorial where to past codeand ensuring all items wire in the menudir/; so far so good. The problem, you talk about two> files 'dmenu.js' & 'data.js', these files were not created bydeluxe-menu program. Where are they, so that I can see if this thing works before buying, so far; not so good.
A:You may have another name for your data file (not data.js).
If you want to use tab menu you'll have dtabs.js engine file and data file.
1. create and save .js file with your menu parameters in Deluxe Tuner(you can use "File/Save as/HTML" function). You can enter any name you like, for example enter "tab". So you'llhave tab.html, tab.js files and "tab.files" folder with all menu files. 2. open your .html page in any text editor 3. Copy generated tab.js file and "tab.files/" folder in the same folderwith your index.html page. 4. Open generated menu.html in any text editor and copy several rows of code (<script> tags), For info see:http://deluxe-tabs.com/product-info/?installation
<head> <!-- Deluxe Menu --> <noscript><a href="http://deluxe-menu.com">Javascript Menu by Deluxe-Menu.com</a></noscript> <script type="text/javascript" src="tab.files/dmenu.js"></script> </head> <body> ... <script type="text/javascript" src="tab.js"></script> ...
That's all.
Q:
Is it possible to change the mouseover font style to bold within the deluxe menu?
A:Unfortunately, Deluxe Menu can't change font weight. If you want to do that you can paste your own <div> withinitem's text field and change a font yourselves.
For example:
***
function changeFont(obj, over) { obj.style.fontWeight = over ? 'bold' : 'normal'; }
If is there any way I can give some space between pressed_item and hover item for the rollover menus
A: You can try to specify spacing parameter:
var itemSpacing=1;
You can also try to use separators.
You should add separator between menu items: ["item","#", "", "", "", "", "", "", "", "", "", ], ["-",], ["item","#", "", "", "", "", "", "", "", "", "", ],
Use "Add Separator button in Deluxe Tuner.
Set separator parameters in the following way: //--- Separators var separatorImage=""; var separatorWidth="100%"; var separatorHeight="2px"; var separatorAlignment="left"; var separatorVImage="data.files/separator.jpg"; var separatorVWidth="2px"; var separatorVHeight="100%"; var separatorPadding="0px";
Oct 9, 2008 ... Discuss coding issues, including JavaScript, PHP & MySQL, HTML & CSS, ... why would you do something like that (disabling the button) for a
Mar 3, 2007 ... i disabled the button by calling a javascript function - btnSave.Attributes.Add( "onClick","return buttonDisabled();") ; In the Javascript
Dec 25, 2010 ... open options panel > under the hood tab > content settings button > javascript in there you can disable it. but most sites use it and you
The following is a second attempt at disabling buttons. This is a superclass of AW.UI.Button which provides the methods disable(boolean) and isDisabled()