The Link Info sample , can it show textbox and submenu?

Please note that official support for this menu version has now ceased. There are still plenty of users, though, and the forum is still running. Some of our long-time users may be able to help you out.
Post Reply
kirt
Beginner
Beginner
Posts: 2
Joined: Wed Oct 02, 2002 7:14 pm

The Link Info sample , can it show textbox and submenu?

Post by kirt »

The The Link Info sample on this web page shows that you can have menu items link to boxes of text for displaying information

But can it show a submenu with links also at the same time?

thanks
kirt
Beginner
Beginner
Posts: 2
Joined: Wed Oct 02, 2002 7:14 pm

Sample script

Post by kirt »

"About The Awards","show-menu=menu2", "URL",,1,
"My Award Level","show-menu=menu3","URL",,1,
"All Award Levels","show-menu=menu4","URL",,1,
"Welcome Page","show-menu=menu5","URL",,1,
"Help","show-menu=menu6","URL",,1
])


box_top=200
box_left=170
box_width=600
box_height=20

addmenu(menu=["menu2",
box_top,box_left,box_width,1,"",style1,,,effect,,,,,,,,,,,,,
"<table width="+(box_width-10)+" height="+box_height+" border=0><tr><td align=center><b>About The Awards</B></td></tr><tr><td align=center>This will give you information on the service awards program.</td></tr></table>","#",,,1
])

addmenu(menu=["menu3",
box_top,box_left,box_width,1,"",style1,,,effect,,,,,,,,,,,,,
"<table width="+(box_width-10)+" height="+box_height+" border=0><tr><td align=center><b>My Award Level</B></td></tr><tr><td align=center>To view your award level category or to make your selection on-line.</td></tr></table>","#",,,1
])

addmenu(menu=["menu4",
box_top,box_left,box_width,1,"",style1,,,effect,,,,,,,,,,,,,
"<table width="+(box_width-10)+" height="+box_height+" border=0><tr><td align=center><b>All Award Levels</B></td></tr><tr><td align=center>To choose a award level to view.</td></tr></table>","#",,,1
])

addmenu(menu=["menu5",
box_top,box_left,box_width,1,"",style1,,,effect,,,,,,,,,,,,,
"<table width="+(box_width-10)+" height="+box_height+" border=0><tr><td align=center><b>Welcome Page</B></td></tr><tr><td align=center>To view your welcome letter.</td></tr></table>","#",,,1
])

addmenu(menu=["menu6",
box_top,box_left,box_width,1,"",style1,,,effect,,,,,,,,,,,,,
"<table width="+(box_width-10)+" height="+box_height+" border=0><tr><td align=center><b>Help</B></td></tr><tr><td align=center>To view contact information or for more help.</td></tr></table>","#",,,1
])

I want "All Award Levels","show-menu=menu4","URL",,1, to have a submenu also . Is this something that can be done?
Post Reply