- Text aligned to left - 85% transparency for sub menus - Items with icons - Sound support! - Transition #14 - "fade out" effect - Visible over select boxes, iframes, pdf, flash, Java applets. - Deluxe Tuner - visual interface to create and modify dhtml menus easily and in no time. - Relative/Absolute menu position
There can be multi level menus - create as many rows or columns of the menu as you want.
Use a mouse to drag a menu as a usual window. Also you can construct the menu where each submenu can be "detached" from the main menu (MSOfficeToolbarLike mode).
When the page is scrolled the menu remains visible. The DHTML menu can "float" along one or two coordinate axes.
Q: Dreamweaver navigation bar disappearing behind flash file in Firefox..
A:You should add "opaque" parameter for
Q: Does this product work to make drop down menu in Frontpage 2003?
A:Deluxe Menu wasn't developed as Dreamweaver/Frontpage extension, BUT you can use it as standard Javascript files. To install the menuinto your html page:
Notice that in the Design mode your drop down menu may displayincorrectly. It is normal. You should view your page in browser preview.
Q: We have two frames in a frameset, one for the menu and one for the content where the javascript menu frame expands normally without any problem. Our content frame's source is determined dynamically. The problem occurs when the content frame contains a page with another frameset in it. Unfortunately we can not avoid this for now. And when this happens our menu stops expanding.
A:Unfortunately it is really possible that you'll have problems in thatcase because the index of the content frame will be changed.
For example now you have: <frameset id="frmSet"> <frame> //menu index=0 <frame> //content index=1 </frameset> Your init function will be: dm_initFrame("frmSet", 0, 1, 0);
But if you'll have frameset instead of content frame: <frameset id="frmSet"> <frame> //menu index=0 <frameset> <frame> // index=1 <frame> //content index=2 </frameset> </frameset> You should write your init function in the following way: dm_initFrame("frmSet", 0, 2, 0);
You should change your javascript menu frame init function in that case.
Q: Can you provide indication on how to apply the cross-frame mode from your html menu builder?
A:You should create your menu in Deluxe Tuner and save your data file. Then you should open your data file in any text editor and change your dm_init(); function.