I don't have a working site up yet, so bare with me.
I've Tried using DIV tags:
Code: Select all
aI("text=City Tavern<div align=right>842-5555</div>;url=#");
And Table Tags:
Code: Select all
aI("text=<table width=100%><tr><td>City Tavern</td><td align=right>842-5555</td></tr></table>;url=#");
Here is the Full Code:
Code: Select all
_scrollAmount=5 // Used for Netscape 4 scrolling
_scrollDelay=10 // Used for Netscape 4 scrolling
_menuCloseDelay=500 // The delay for menus to remain visible on mouse off
_menuOpenDelay=150 // The delay for opening menus on mouse over
_subOffsetTop=0; // Sub menu offset Top position
_subOffsetLeft=0; // Sub menu offset Left position
AllMargin=0
treeOffset=5; // Used to set the offset of sub menus
singleMasterMenu=true // Informs the system to only have one menu open at a time
with(tstyle1=new mm_style()){
align = "center";
offcolor = "#ffffff";
oncolor = "#FFFFFF";
padding = 2
fontsize = "12px";
fontweight = "bold";
fontfamily = "Comic Sans MS, arial, verdana, tahoma";
itemheight=22
itemwidth=500
}
sub1Style=new copyOf(tstyle1)
sub1Style.offcolor = "#000000";
sub1Style.oncolor = "#999999";
sub1Style.offbgcolor="#ffffff";
sub1Style.separatorcolor="#FFFFFF";
sub1Style.align = "left";
sub1Style.padding = 0;
sub1Style.fontsize= "10px";
sub1Style.fontweight= "bold";
sub1Style.itemheight= "16";
with(new menuname("main Tree Menu")){
top=150
left=100
style = tstyle1;
alwaysvisible = 1;
margin=AllMargin
position="relative"
aI("text=Clothing Stores;bgimage=1.gif;overbgimage=1.gif;showmenu=Clothing;type=tree;");
aI("text=<center>Convience Stores;bgimage=2.gif;overbgimage=2.gif;showmenu=Convience;type=tree;");
aI("text=<center>Event Coordinator;bgimage=3.gif;overbgimage=3.gif;showmenu=Event;type=tree;");
aI("text=<center>Florist;bgimage=4.gif;overbgimage=4.gif;showmenu=Florist;type=tree;");
aI("text=<center>Gift Shops;bgimage=5.gif;overbgimage=5.gif;showmenu=Gift;type=tree;");
aI("text=<center>Hair Salons / Tanning;bgimage=1.gif;overbgimage=1.gif;showmenu=Hair;type=tree;");
aI("text=<center>Lodging;bgimage=6.gif;overbgimage=6.gif;showmenu=Lodging;type=tree;");
aI("text=<center>Marinas;bgimage=7.gif;overbgimage=7.gif;showmenu=Marinas;type=tree;");
aI("text=<center>Massage;bgimage=8.gif;overbgimage=8.gif;showmenu=Massage;type=tree;");
aI("text=<center>Restaurants;bgimage=9.gif;overbgimage=9.gif;showmenu=Restaurants;type=tree;");
aI("text=<center>Video Rental;bgimage=1.gif;overbgimage=1.gif;showmenu=Video;type=tree;");
}
with(new menuname("Clothing")){
style = sub1Style;
margin=AllMargin
aI("text=Fisher & Company Clothiers;url=#");
}
with(new menuname("Convience")){
style = sub1Style;
margin=AllMargin
aI("text=Osborn's Mini Mart;url=#");
}
with(new menuname("Event")){
style = sub1Style;
margin=AllMargin
aI("text=A.C. Specialties;url=#");
}
with(new menuname("Florist")){
style = sub1Style;
margin=AllMargin
aI("text=Elizabeth's Garden;url=#");
}
with(new menuname("Gift")){
style = sub1Style;
margin=AllMargin
aI("text=Mary's Shoppe;url=#");
aI("text=The Painter and the Poet;url=#");
aI("text=Shoreline Specialties;url=#");
aI("text=Town & Country Baskets;url=#");
}
with(new menuname("Hair")){
style = sub1Style;
margin=AllMargin
aI("text=Michelle's Headquarters;url=#");
aI("text=Studio Hair Designs;url=#");
}
with(new menuname("Lodging")){
style = sub1Style;
margin= AllMargin
aI("text=Culver Cove Resort;url=#");
aI("text=Inn by the Lake;url=#");
aI("text=Main Street Manor;url=#");
aI("text=Swan Lake Resort;url=#");
}
with(new menuname("Marinas")){
style = sub1Style;
margin=AllMargin
aI("text=Culver Marina;url=#");
aI("text=Culver's Portside Marina;url=#");
}
with(new menuname("Massage")){
style = sub1Style;
margin=AllMargin
aI("text=Integrated Massage & Wellness;url=#");
}
with(new menuname("Video")){
style = sub1Style;
margin=AllMargin
aI("text=Bick's Flicks;url=#");
}
with(new menuname("Restaurants")){
style = sub1Style;
margin=AllMargin
aI("text=Captain's Quarters;url=#");
aI("text=City Tavern;url=#");
aI("text=Papa's Pizza;url=#");
aI("text=Edge Water;url=#");
aI("text=The 10 Spot;url=#");
}
drawMenus()