- Relative/Absolute menu position - Inactive/Disabled items - Submenus automatically scrolls - 85% transparency for sub menus - Horizontal or vertical orientation - Text aligned to left - Visible over select boxes, iframes, pdf, flash, Java applets. - Items with icons
Good navigation system is an important part of web site success. If people can't find their way around the site, they will rapidly give up looking and go, never to return. So, it's very significant that your website has a neat, fast, and gratifying to the eye navigation. Don't permit your web site visitors to get lost. Try Deluxe Menu!
Q: Dreamweaver navigation bar disappearing behind flash file in Firefox..
A:You should add "opaque" parameter for
Q: With menu tabs, I'm trying to dynamically set the bselectedItem parm, using php. If I set bselectedItem to anything other than 0, the submenu goes away and the main html tab javascript is not highlighted. If I set to 0, everything works.
A: See, if you use Tab Mode var tabMode = 1;
var bselectedItem = 0; //main items var bselectedSmItem = -1; //submenus
So you should set: var bselectedItem = 0; //main items (0;7;14;21;25) var bselectedSmItem = -1; //submenus (1;2;3;4;5....)
Q: We haven't managed to find out how to activate a popup window through click in a flash? Is there possible to call a single jsfunction to activate it?
A:You can deluxePopupWindow.open() function to open your window:
<a href="javascript:;" onclick="deluxePopupWindow.open('window1', 'Content1 Content1','Window1','width=220,height=100,resizable,scrollbars=no,middle,right,fade-effect', 'windowsvista_graphite')"> <OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" WIDTH="120" HEIGHT="40"> <PARAM NAME=movie VALUE="deluxe-menu.files/flash-deluxe-menu.swf"> <PARAM NAME=quality VALUE=best> <param name="wmode" value="opaque"> <PARAM NAME=bgcolor VALUE=#FFFFFF> <EMBED src="deluxe-menu.files/flash-deluxe-menu.swf" quality=best bgcolor=#FFFFFF wmode="opaque" WIDTH="120" HEIGHT="40" NAME="data-samples/flash-deluxe-menu" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"> </EMBED> </OBJECT></a>Q: Please identify the parameter I need to set to produce ... Tree menu items start out as normal text , then Bold text for tree menu items on the onmouseover event . After mouse out, text returns to normal.
A:Unfortunately, Deluxe Tree doesn't have such a feature. You should addthe following code in your data file:
function changeFont(obj, over) { obj.style.fontWeight = over ? 'bold' : 'normal'; obj.style.fontSize = over ? '13px' : '12px'; // You can not use this line }