But (and this saddens me) i think i found a sever limitation in this product. Someone PLEASE correct me if i'm wrong.
Basically you can't have two menu items w/ the exact same name. That kinds sux. Suppose if you want to have the following menu structure:
Menu1,
----|___Procedures
----|---------|____Procedure 1
----|---------|____Procedure 2
----|___Diagrams
--------------|____Diagram 1
--------------|____Diagram 2
--------------------------|_____Diagram 1,1
Menu 2,
----|___Procedures
----|---------|____Procedure 1
----|---------|____Procedure 2
----|___Samples
--------------|____Sample 1
--------------|____Sample 2
Because you can't have two things /w the name Procedures, coding in this menu can be a pain in the rump.

Code: Select all
with(milonic=new menuname("Links")){
style=menuStyle;
aI("text=Apache Web Server;url=http://www.apache.org/;status=Apache Web Server, the basis of Milonic's Web Site;");
aI("text=MySQL Database Server;url=http://ww.mysql.com/;status=MySQL, Milonic's Prefered Choice of Database Server;");
aI("text=PHP - Development;url=http://www.php.net/;status=PHP - Web Server Scripting as used by Milonic;");
aI("text=phpBB Web Forum System;url=http://www.phpbb.net/;status=PHP Based Web Forum, Milonic's Recommended Forum Software;");
aI("text=Anti Spam Tools;showmenu=Anti Spam;status=Anti Spam Solutions, as used by Milonic;");
aI("text=Test Test;showmenu=Test Test;status=Anti Spam Solutions, as used by Milonic;");
}
with(milonic=new menuname("Anti Spam")){
style=menuStyle;
aI("text=Spam Cop;url=http://www.spamcop.net/;");
aI("text=Mime Defang;url=http://www.mimedefang.org/;");
aI("text=Spam Assassin;url=http://www.spamassassin.org/;");
}
with(milonic=new menuname("Test Test")){
style=menuStyle;
aI("text=Spam Cop;showmenu=Spam Cop;");
aI("text=Mime Defang;url=http://www.mimedefang.org/;");
aI("text=Spam Assassin;url=http://www.spamassassin.org/;");
}
with(milonic=new menuname("Spam Cop")){
style=menuStyle;
aI("text=Spam Cops;showmenu=Spam Cops;");
aI("text=Mime Defang;url=http://www.mimedefang.org/;");
aI("text=Spam Assassin;url=http://www.spamassassin.org/;");
}
with(milonic=new menuname("My Milonic")){
style=menuStyle;
aI("text=Login;url=http://www.milonic.co.uk/login.php;");
aI("text=Licenses;url=http://www.milonic.co.uk/mylicenses.php;");
aI("text=Invoices;url=http:/milonic.com/myinvoices.php;");
aI("text=Make Support Request;url=http://www.milonic.co.uk/reqsupport.php;");
aI("text=View Support Requests;url=http://www.milonic.co.uk/mysupport.php;");
aI("text=Test Test;showmenu=Test Test;");
}
with(milonic=new menuname("Test Test")){
style=menuStyle;
aI("text=Spam Cop;showmenu=Spam Cop;");
aI("text=Mime Defang;url=http://www.mimedefang.org/;");
aI("text=Spam Assassin;url=http://www.spamassassin.org/;");