sleipner
12-08-2005, 06:49 PM
is there anyway to get the HV Menu 5.5 to display window.status messages when you mouseover menu items with window.status in them
-----------------------------------
current code is (item: menu2)::::::::::::::::::::::::
/***********************************************************************************
* (c) Ger Versluis 2000 version 5.411 24 December 2001 (updated Jan 31st, 2003 by Dynamic Drive for Opera7)
* For info write to menus@burmees.nl *
* You may remove all comments for faster loading *
***********************************************************************************/
function BeforeStart(){return}
function AfterBuild(){return}
function BeforeFirstOpen(){return}
function AfterCloseAll(){return}
// Menu tree
Menu2=new Array("<span style='cursor:pointer; cursor:hand;' onmouseover=window.status='HOME';><b>HOME</b></span>","","",5,18);//header
Menu2_1=new Array("<span style='cursor:pointer; cursor:hand;'><b>OUR MISSION</b></span>","http://www.sc.maricopa.edu/boomerz/mission.htm","",0,20,95);
this does not display the window.status message, and if I do it this way:::::
[CODE]Menu2=new Array("<span style='cursor:pointer; cursor:hand;' onmouseover='window.status='HOME';'><b>HOME</b></span>","","",5,18);//header
it doesnt work, nor does it work with
Menu2=new Array("<span style='cursor:pointer; cursor:hand;' onmouseover="window.status='HOME';"><b>HOME</b></span>","","",5,18);//header
because it just kills the menu, so could the window.status message be held in or above the
function BeforeStart(){return}
function AfterBuild(){return}
function BeforeFirstOpen(){return}
function AfterCloseAll(){return}
section of the page as a variable, or maybe a function?
-----------------------------------
current code is (item: menu2)::::::::::::::::::::::::
/***********************************************************************************
* (c) Ger Versluis 2000 version 5.411 24 December 2001 (updated Jan 31st, 2003 by Dynamic Drive for Opera7)
* For info write to menus@burmees.nl *
* You may remove all comments for faster loading *
***********************************************************************************/
function BeforeStart(){return}
function AfterBuild(){return}
function BeforeFirstOpen(){return}
function AfterCloseAll(){return}
// Menu tree
Menu2=new Array("<span style='cursor:pointer; cursor:hand;' onmouseover=window.status='HOME';><b>HOME</b></span>","","",5,18);//header
Menu2_1=new Array("<span style='cursor:pointer; cursor:hand;'><b>OUR MISSION</b></span>","http://www.sc.maricopa.edu/boomerz/mission.htm","",0,20,95);
this does not display the window.status message, and if I do it this way:::::
[CODE]Menu2=new Array("<span style='cursor:pointer; cursor:hand;' onmouseover='window.status='HOME';'><b>HOME</b></span>","","",5,18);//header
it doesnt work, nor does it work with
Menu2=new Array("<span style='cursor:pointer; cursor:hand;' onmouseover="window.status='HOME';"><b>HOME</b></span>","","",5,18);//header
because it just kills the menu, so could the window.status message be held in or above the
function BeforeStart(){return}
function AfterBuild(){return}
function BeforeFirstOpen(){return}
function AfterCloseAll(){return}
section of the page as a variable, or maybe a function?