This is still a big issue here. The question is how to get an offset from the relative position of the mouse pointer to work (NOTE: I _cannot_ use absolute positioning). I downloaded RC11, and it did not fix this issue (but it did solve some others: THANKS!)
The relevant code pieces are:
Code: Select all
<script language="JavaScript" src="incs/milonic5/milonic_src.js" type="text/javascript"></SCRIPT>
<script language="JavaScript">
if(ns4)_d.write("<scr"+"ipt language=JavaScript src=incs/milonic5/mmenuns4.js><\/scr"+"ipt>");
else _d.write("<scr"+"ipt language=JavaScript src=incs/milonic5/mmenudom.js><\/scr"+"ipt>");
</script>
<script language="JavaScript">
<!--
_menuCloseDelay=250 // The time delay for menus to remain visible on mouse out
_menuOpenDelay=50 // The time delay before menus open on mouse over
_followSpeed=5 // Follow scrolling speed
_followRate=40 // Follow scrolling Rate
_subOffsetTop=5 // Sub menu top offset
_subOffsetLeft=0 // Sub menu left offset
_scrollAmount=3 // Only needed for Netscape 4.x
_scrollDelay=20 // Only needed for Netcsape 4.x
with(cms_ChildNav=new mm_style()){
offcolor="#FFFFFF";
offbgcolor="#666699";
oncolor="#000000";
onbgcolor="#CCCCCC";
bordercolor="#000000";
borderstyle="solid";
borderwidth=1;
separatorcolor="#000000";
separatorsize="1";
padding=4;
fontsize=11;
fontstyle="normal";
fontfamily="Arial, Helvetica";
align="left";
subimage="images/cmst_toc_arrow.gif";
subimagepadding=2;
}
Code: Select all
with(milonic=new menuname("mnu_69")){
style=cms_ChildNav;
top="offset=100";
aI("text=DMLContent;url=dmlcocms.cfm?a=cms,c,23,2,0;showmenu=mnu_23;");
aI("text=Consulting;url=dmlcocms.cfm?a=cms,c,38,2,0;");
aI("text=Development;url=dmlcocms.cfm?a=cms,c,5,2,0;");
aI("text=Architecture;url=dmlcocms.cfm?a=cms,c,8,2,0;");
aI("text=Hosting;url=dmlcocms.cfm?a=cms,c,7,2,0;");
}
Code: Select all
<a href="dmlcocms.cfm?a=cms,c,23,2,0" class="tocLinks" onmouseover="popup('mnu_23', 1);" onmouseout="popdown();">DMLContent<img src="images/cmst_toc_arrow.gif" alt="More Related Content" width="11" height="11" border="0" align="absmiddle" hspace="4"></a>
You can see samples of the issue in question at
http://www.dmlco.com/dmlcocms.cfm?a=cms,c,69,2
or
http://www.dmlco.com/dmlcocms.cfm?a=cms,c,28,2,0
or
http://www.dmlco.com/dmlcocms.cfm?a=cms,c,71,2,0
The last one has no submenus, but shows why absolute positioning won't work: the vertical location of the menus is dynamic from page to page.
All help appreciated ...
-Daniel