How to make the java pull down menu to be reversed color state?
Q:
I have made a horizontal java pull down menu that have different colors for
different pages. What I’m not figuring out is out to make the
current page be the reversed color state? This page should actually
have the “images” highlighted. I’m using the Deluxe Tuner plus
deluxe-menu+deluxe-tree+deluxe-tabs-trial.exe.
A:
Please, check the following parameter
var pressedItem=-2;
This parameter sets an index of an item that will be highlighted by default.
-2 - the toggle mode is disabled;
-1 - the toggle mode is enabled, but no items highlighted by default;
0,1,2,3,… - index of highlighted item in a top-menu.
The java pull down menu has only two states normal and mouseover. We’ll try to add the pressed state in the future.
You can set a pressed item using Javascript API:
function dm_ext_setPressedItem (menuInd, submenuInd, itemInd, recursion)
Sets a current pressed item.
menuInd - index of a menu on a page, >= 0.
submenuInd - index of a submenu, >= 0.
itemInd - index of an item, >=0.
recursion = true/false - highlight parent items.
But notice, to use dm_ext_setPressedItem() you should know ID of selected item and subitem.
You can’t get this ID after you reload your page. That is why you should write your own code on PHP.
You can also set the correct
var pressedItem=1;
parameter on each html page.