- Cross-frame support - menus work on frameset-based pages - 85% transparency for sub menus - Special JavaScript API for changing javascript menu "on-the-fly" - Submenus go over all page objects - Status string shows item labels - Unlimited number of sub levels - Filters and Transitional effects - Text aligned to left
Tune menu parameters manually or using Deluxe Tuner. Then add several rows of a code within html page - your menu is ready!
Use special JavaScript functions for: Dynamic changing of items (text, link, icons and even individual style!). Making a menu item active/inactive. Addition/removing of items. Changing of visibility of items. Getting the information on any menu, submenu and items. Other tricks.
Opportunity to control the menu from the keyboard.
Cross-frame mode allows you to build full-featured menus on the pages that use frame-based structure. But for all that it's not necessary to insert any additional code into all the pages - just specify some additional parameters of the menu.
Q: I have just downloaded your trial version and am trying to use de-lux tuner using the windows xpstyle1 template. I can only seem to get the top java menu button showing as grey but can change colors of submenus OK. Am I missing something or is this a restriction of the trial system i.e. how do I get the top java menu button showing the same as submenu buttons.
A:Trial version has full functionality of the licensed version.
To change submenu colors you should change the following parameters:
var menuBackColor="#F2F3F2"; var itemBackColor=["#F2F3F2","#535353"]; and Individual Submenu Style:
var menuStyles = [ ["menuBackColor=#F2F3F2","menuBorderWidth=0","itemSpacing=0","itemPadding=4px","smOrientation=undefined"], ];
For the top items you should change Individual Item style:
var itemStyles = [ ["itemHeight=21px","itemBackColor=#F2F3F2,#535353"], ];
Q: Dreamweaver navigation bar disappearing behind flash file in Firefox..
A:You should add "opaque" parameter for
Q: I have built out a vertical menu that fits within a fixed size box. The items of the menus are all fixed size images. However when increasing the font size in the browser under View -> Text Size the spacing between the images increases and the html java menu no longer fits within the fixed space. I did have CSS padding-top in the html java menu that I took out but it still does not fit in the space. I took out but it still does not fit in the space.
Have you run into this before or do you know of a fix for this?
A: You've installed the menu in DIV with absolute position (boxNav). Thatis why you have such behaviour. Try to use relative position for this DIV.
Q: Is it possible to have your menu mouseover call one of my functions? I need to change some text on the screen based on which menu itemis highlighted.
A:Each menu items can include any html code. So, you can include your own objects with onmouseover event, forexample:
var menuItems = [ ["<div onmouseover='yourFunc()'>item text</div>"] ];