My javascript is not too brilliant, so the following question:
Is it possible to add menuitems to the same submenu after the "new menuname" but before drawmenus()?
Example (which doesn't work ofcourse

Code: Select all
with(milonic=new menuname("Submenu")){
style=subStyle;
Itemwidth=195;
aI("text=Item A;url=blaA;status=Item A;");
aI("text=Item B;url=blaB;status=Item B;");
}
with(milonic=menuname("Submenu")){
aI("text=Item C;url=blaC;status=Item C;");
}
drawMenus();
Raymond