sub menu header also links?

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
AllBeItMine
Beginner
Beginner
Posts: 2
Joined: Wed Jan 21, 2004 4:02 am

sub menu header also links?

Post by AllBeItMine »

Hi guys, i'm trying to put a link to a page on a sub menu header and was wondering what to do...

this is the main menu array that points to the sub menus:

addmenu(menu=["products",121,135,120,1,,stylenormal,,"left",effect,,,,,,,,,,,,
,"data projectors","show-menu=dataprojectors",,,0
,"presentation boards","show-menu=presentationboards",,,0
,"projection screens","show-menu=projectionscreens",,,0
,"visual presenters","show-menu=visualpresenters",,,0
,"videoconferencing","show-menu=videoconferencing",,,0
,"overhead projectors","show-menu=overheadprojectors",,,0
,"audioconferencing","show-menu=audioconferencing",,,0
,"plasma and lcd monitors","show-menu=plasmaandlcdmonitors",,,0
,"slide projection","show-menu=slideprojection",,,0
,"av furniture","show-menu=avfurniture",,,0
,"audio systems","show-menu=audiosystems",,,0
,"hire equipment","show-menu=hireequipment",,,0
])


and this is one of the sub menus:
addmenu(menu=["dataprojectors",,,120,1,,stylenormal,,"left",effect,,,,,,,,,,,,
,"micro portable","/pages/1074552783332443.html?category=33",,,1
,"ultra portable ","/pages/1074552783332443.html?category=22",,,1
,"portable & fixed","/pages/1074552783332443.html?category=34",,,1
,"data projector accessories","/pages/1074552783332443.html?category=59",,,1
])


what syntax do i use to add a link on one of the main links above so that it links to a sub menu page?

any help greatly appreciated. thanks
User avatar
Ruth
 Team
 Team
Posts: 8763
Joined: Thu May 15, 2003 5:02 am
Location: Yucaipa, CA
Contact:

Post by Ruth »

I'm not sure I understand what you want, but if it's to make a link on one of the show-menu items, I believe it' would be like this

Code: Select all

,"data projectors","http://whatever","show-menu=dataprojectors",,0 
and you might have to change the 0 at the end to one, I've never really understood just what that was. The http and show-menu might go in the reverse order.

Ruth
AllBeItMine
Beginner
Beginner
Posts: 2
Joined: Wed Jan 21, 2004 4:02 am

Post by AllBeItMine »

thanks heaps. this working beautifully:

addmenu(menu=["products",121,135,120,1,,stylenormal,,"left",effect,,,,,,,,,,,,
,"data projectors","show-menu=dataprojectors","/pages/1074552783332443.html?category=7",,1
,"presentation boards","show-menu=presentationboards","/pages/1074552783332443.html?category=26",,1
,"projection screens","show-menu=projectionscreens","/pages/1074552783332443.html?category=1",,1
,"visual presenters","show-menu=visualpresenters","/pages/1074552783332443.html?category=19",,1
,"videoconferencing","show-menu=videoconferencing","/pages/1074552783332443.html?category=50",,1
,"overhead projectors","show-menu=overheadprojectors","/pages/1074552783332443.html?category=29",,1
,"audioconferencing","show-menu=audioconferencing","/pages/1074552783332443.html?category=61",,1
,"plasma and lcd monitors","show-menu=plasmaandlcdmonitors","/pages/1074552783332443.html?category=63",,1
,"slide projection","show-menu=slideprojection","/pages/1074552783332443.html?category=8",,1
,"av furniture","show-menu=avfurniture","/pages/1074552783332443.html?category=20",,1
,"audio systems","show-menu=audiosystems","/pages/1074552783332443.html?category=16",,1
,"hire equipment","show-menu=hireequipment","/pages/1074552783332443.html?category=54",,1
])

addmenu(menu=["dataprojectors",,,120,1,,stylenormal,,"left",effect,,,,,,,,,,,,
,"micro portable","/pages/1074552783332443.html?CATEGORY=7&SC=33",,,1
,"ultra portable ","/pages/1074552783332443.html?CATEGORY=7&SC=22",,,1
,"portable & fixed","/pages/1074552783332443.html?CATEGORY=7&SC=34",,,1
,"data projector accessories","/pages/1074552783332443.html?CATEGORY=7&SC=59",,,1
])
Post Reply