Search found 7 matches

by erikpkn
Tue Aug 12, 2008 12:15 pm
Forum: Help & Support for DHTML Menu Version 5+
Topic: Strange flicker for about 5 seconds
Replies: 2
Views: 2539

Re: Strange flicker for about 5 seconds

Yes, that worked. Thanks for the quick reply!

Erik.
by erikpkn
Tue Aug 12, 2008 11:00 am
Forum: Help & Support for DHTML Menu Version 5+
Topic: Strange flicker for about 5 seconds
Replies: 2
Views: 2539

Strange flicker for about 5 seconds

When I load a new page and I point the mouse pointer on the menu, the menu shows a strange flicker (I don't know how to describe it better). This happens only in the first approximately 5 seconds after the page loads (when I wait that time before accessing the menu, this doesn't happen). Internet ...
by erikpkn
Mon Aug 11, 2008 9:42 pm
Forum: Help & Support for DHTML Menu Version 5+
Topic: Syntax error in mm_menueditapi.js
Replies: 1
Views: 2190

Syntax error in mm_menueditapi.js

I don't know if this is the right place to report errors in the Milonic Menu, but there's a syntax error in at least the latest two or three versions of the menu in mm_menueditapi.js. It's in the functions mmm$ByText and mmm$ByURL . The error is that it says "retutn" where it should say "return ...
by erikpkn
Wed Sep 28, 2005 11:14 pm
Forum: Help & Support for DHTML Menu Version 5+
Topic: Displaying and hiding and redisplaying menus
Replies: 5
Views: 5065

In the mean time, after some experimenting I found that this is working on all three tested browsers:

function toggleMenu() {
if (menuOn) {
mm_changeMenuProperty("Mainmenu", 7, false);
closeAllMenus();
}
else {
mm_changeMenuProperty("Mainmenu", 7, true);
popup("Mainmenu");
}
menuOn ...
by erikpkn
Wed Sep 28, 2005 10:39 pm
Forum: Help & Support for DHTML Menu Version 5+
Topic: Displaying and hiding and redisplaying menus
Replies: 5
Views: 5065

Never mind, Ruth, thanks anyway for your time and effort.

But could you pass on to the developers that it is the function menuDisplay() as described on the JavaScript Menu Methods page ( http://www.milonic.com/menu_methods.php ) that doesn't seem to work properly on Firefox (1.0.6 on Windows XP ...
by erikpkn
Wed Sep 28, 2005 2:32 pm
Forum: Help & Support for DHTML Menu Version 5+
Topic: Displaying and hiding and redisplaying menus
Replies: 5
Views: 5065

Ruth, thank you for your quick response. history.back() can't work, because the photo album and the enlarged photos are all on the same HTML page. Switching between them is all happening in JavaScript and CSS (with display: none;).

So I tried location.replace("index.htm"). That worked, but I really ...
by erikpkn
Tue Sep 27, 2005 11:26 am
Forum: Help & Support for DHTML Menu Version 5+
Topic: Displaying and hiding and redisplaying menus
Replies: 5
Views: 5065

Displaying and hiding and redisplaying menus

At some point in my JavaScript I need to make the main menu (Hoofdmenu) a submenu in another menu (Fotomenu). To do this I coded the following:

//First, place Hoofdmenu on a different location and make it invisible (so it can be shown as a submenu item of Fotomenu)

mm_changeMenuProperty ...