I've read many posts already and I know how much you like to see things
So my problem: I love those current page indicators, really great! But I want them to show up on both menus on the page. Problem is, that the menus are from different source files, but well, they do show the same content, and that is the desired behaviour, I want one horizontal and one vertical bar.
What am I doing wrong?
Or is it supposed to not show the current page indicator twice?
I've also found that it's only the first loaded .js file with menu declarations that gets the Current Page Indicator.
Oh and to make it even worse, the submenu indicators work just fine

Many thanks in advance!
SabbeRubbish
My files (partially):
menu_data.js (the top one)
Code: Select all
with(milonic=new menuname("Main Menu")){
alwaysvisible=1;
left=380;
orientation="horizontal";
style=menuStyle;
top=82;
aI("text=Home;url=.;");
aI("showmenu=akademos;text=Over Akademos;");
aI("showmenu=muziek;text=Muziek;");
aI("showmenu=praktisch;text=Praktisch;");
aI("showmenu=communicatie;text=Communicatie;");
}
Code: Select all
with(milonic=new menuname("Main Menu")){
alwaysvisible=1;
left=12;
orientation="vertical";
style=menuStyle;
top=30;
aI("text=Home;url=.;");
aI("showmenu=akademos;text=Over Akademos;");
aI("showmenu=muziek;text=Muziek;");
aI("showmenu=praktisch;text=Praktisch;");
aI("showmenu=communicatie;text=Communicatie;");
}