|
|
|
Which parameter I have to set to produce menu pull down to be bold on mouseover?
Return to Recent Questions
Q:
Please identify the parameter I need to set to produce ... menu pull down 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 add
the 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
}
var tmenuItems = [
["<div onMouseOver='changeFont(this, 1)' onMouseOut='changeFont(this, 0)'>Security</div>","", "", "", "", "", "", "", "", ],
["<div onMouseOver='changeFont(this, 1)' onMouseOut='changeFont(this, 0)'>Ease of Access</div>","", "", "", "", "", "", "", "", ],
["|<div onMouseOver='changeFont(this, 1)' onMouseOut='changeFont(this, 0)'>Internet Options</div>","", "", "", "", "", "", "", "", ],
["|<div onMouseOver='changeFont(this, 1)' onMouseOut='changeFont(this, 0)'>Windows Firewall</div>","", "", "", "", "", "", "", "", ],
["<div onMouseOver='changeFont(this, 1)' onMouseOut='changeFont(this, 0)'>Network and Internet</div>","", "", "", "", "", "", "", "", ],
];
Please, notice also that you should add this function every time when
you change your menu in Deluxe Tuner application, as Tuner deletes
this function.
You can find the example here
http://deluxe-tree.com/data-templates/vista-style-7-template-sample.html
Return to Recent Questions
Related:
- Apr 01, 2009 - How can I set different parameters for diferent items in my dhtml dynamic menu?
- Apr 11, 2009 - I have the menu dhtml code somewhat in location, none of the settings are correct...
- Apr 13, 2009 - What the options of CSS parameters in the down menu dhtml?
- Apr 19, 2009 - Is there a way to set the default web menu bar tab on a page load?
- May 01, 2009 - When I set the AjaxCount to 0, my css collapsible menu don't pop out anymore.
- May 12, 2009 - Is there a way to set a parameter such that when a javascript menu rollover Item is CLICKED...
- May 25, 2009 - How can I setup size and color of the font for individual button in the dynamic menu items?
- May 30, 2009 - If the new page in the frame is a frameset itself, the down menu navigation won't show up.
- Jul 13, 2009 - How can I open up menu script on mouseover?
- Aug 14, 2009 - How I can set the font and backcolors in html menu generator using the hexidecimal number?
- Aug 21, 2009 - Is there a way in the onmouseover collapse menu maker to change preview screen color?
|