Search found 1759 matches

by kevin3442
Wed Oct 04, 2006 2:47 am
Forum: Help & Support for DHTML Menu Version 5+
Topic: Now that IE7 is released are Milonic menus compatible ...
Replies: 6
Views: 5562

My two cents: I wonder if your client would accept a response like, "We're sorry, but since IE7 is still a release candidate only, that means it's still under development. If we work to make the menu compatible with IE7 now, there's no guarantee that it will be compatible when the official rele...
by kevin3442
Tue Oct 03, 2006 9:38 pm
Forum: Help & Support for DHTML Menu Version 5+
Topic: how do i use the id property?
Replies: 3
Views: 3406

Hi Greg, I haven't used it, but I would suppose that you could use it with getElementById(), to get the item object, then manipulate it's styles etc. Alternatively, a function like this might work for you: function mm_changeItemPropertyById(itemID, codeRef, newValue, updateDisplay) { for (i=0; i<_mi...
by kevin3442
Tue Oct 03, 2006 4:14 pm
Forum: Help & Support for DHTML Menu Version 5+
Topic: how to use milonic with php/mysql
Replies: 23
Views: 15705

If I understand your meaning correctly... Yes, you can generate the menu through php without relying on a database. Generating the js code dynamically, using PHP, vs. using static js code should not affect your config options. Note thath the menu on the main Milonic.com site uses php, and it takes a...
by kevin3442
Tue Oct 03, 2006 3:45 pm
Forum: Help & Support for DHTML Menu Version 5+
Topic: DEFINING A BASE URL
Replies: 2
Views: 2975

And that's the exact way to do it. Nicely done! Seems your day is improving ;)

Kevin
by kevin3442
Tue Oct 03, 2006 12:01 am
Forum: Archived Topics for the old Version 3.0 JavaScript Menu
Topic: Error on page
Replies: 9
Views: 22342

Hi Sandy, I see... i was confused by your first set of example code, because it was missing the script tags that load the old menu code: <title>GVO header</title> </head> <BODY bgcolor="#FFFFFF" TEXT="#000000" LINK="darkblue" VLINK="black" ALINK="#000000&...
by kevin3442
Mon Oct 02, 2006 11:35 pm
Forum: Archived Topics for the old Version 3.0 JavaScript Menu
Topic: Error on page
Replies: 9
Views: 22342

Ruth wrote:Hey Kevin,

I missed the link first time also. It's at the bottom of the post. ...
Oops... thanks Ruth. Sorry about that Sandy.

Kevin
by kevin3442
Mon Oct 02, 2006 11:31 pm
Forum: Archived Topics for the old Version 3.0 JavaScript Menu
Topic: Error on page
Replies: 9
Views: 22342

Regarding the table-related tags... there's no telling why they might be like that unless we can see the larger context. However, it is certain that these are unrelated to the menu (even the old one). If you could give us a link to the site, we would be able to address your questions more easily. Ch...
by kevin3442
Mon Oct 02, 2006 7:17 pm
Forum: Help & Support for DHTML Menu Version 5+
Topic: opendelay problem
Replies: 11
Views: 7824

Excellent idea Ruth!
by kevin3442
Mon Oct 02, 2006 5:30 am
Forum: Help & Support for DHTML Menu Version 5+
Topic: opendelay problem
Replies: 11
Views: 7824

Hello, I do understand the upper half/lower half issue; I noticed it last night. That's why I asked if the delay was absolutely necessary, because it is this delay that is causing the upper half to "appear" before the lower half. As you know, a mouseover effect on the actual moused over it...
by kevin3442
Mon Oct 02, 2006 5:18 am
Forum: Help & Support for DHTML Menu Version 5+
Topic: strange pageimage-behaviour firefox
Replies: 12
Views: 7894

Hi, I see the problem. I was trying to see what version of the menu system you're running, but it seems that you may have changed the names of the files containing the base menu code. You should open the milonic_src.js file (whatever it's called on your site) to see what version you are running. The...
by kevin3442
Mon Oct 02, 2006 4:48 am
Forum: Help & Support for DHTML Menu Version 5+
Topic: opendelay problem
Replies: 11
Views: 7824

I think I understand the problem from the look I had at the site last night. The shopping cart menu item shows the mouseover effects as soon as the pointer... well... mouses over it. But the submeu appears after a delay. So you're left with an apparently-pointless mouseover effect until the submenu ...
by kevin3442
Mon Oct 02, 2006 4:26 am
Forum: Help & Support for DHTML Menu Version 5+
Topic: Relative paths and milonic
Replies: 11
Views: 8194

Thanks for the replay but I was actually hoping that I could use relative paths within the menu_data.js file so that all the menu item URL’s are relative to the site root - I’ve tried using ./foldername/file.htm and ../foldername/file.htm but this doesn't appear to be working on some of my pages. I...
by kevin3442
Sun Oct 01, 2006 7:11 am
Forum: Anything Goes
Topic: looking for an example of sound on mouseover
Replies: 6
Views: 7965

There are two menu item properties that correspond to onmouseover and onmouseout events; they are onfunction and offfunction, respectively. Click here to see an example showing the use of these properties.

Hope that helps,

Kevin
by kevin3442
Sun Oct 01, 2006 6:58 am
Forum: Help & Support for DHTML Menu Version 5+
Topic: Sortable table header & mouseover popup: is this possibl
Replies: 4
Views: 4253

Hi, The error indicates that the menu you're targeting with mm_insertItem() does not exist in the menu array, _m[]. I'm thinking that you're specifying the target menu incorrectly. In mm_menueditapi.js, the meuRef required as the first parameter to mm_insertItem() looks like it should be a menu name...
by kevin3442
Sun Oct 01, 2006 6:21 am
Forum: Help & Support for DHTML Menu Version 5+
Topic: opendelay problem
Replies: 11
Views: 7824

Hello Natalia, You have the right idea, but you are applying the properties in the wrong places. You are using horizontalMenuDelay and opendelay as menu style properties , in your definition of menuStyleTopCart, but these are not style properties (you should take them out of menuStyleTopCart). You a...
by kevin3442
Mon Sep 25, 2006 4:58 pm
Forum: Help & Support for DHTML Menu Version 5+
Topic: Frames version - not dealing with 'disabled' items
Replies: 2
Views: 2860

The root of the issue is that the frame system does not check to see if a menu item is disabled or not, it just opens the submenu. This can be fixed. Two approaches: (1) A change to the openSubmenu() function in mm_naveframe.js, to check to see if a menu item is disabled before opening the associate...
by kevin3442
Mon Sep 25, 2006 9:39 am
Forum: Help & Support for DHTML Menu Version 5+
Topic: How does closeAllMenu() work?
Replies: 1
Views: 2221

Hi Jukka, You have a couple of syntax issues in your sample code. For example, the double quotes around "menuname" here: <a href="#" onclick="javascript:menuDisplay(gmobj("menuname"),1)">Close all menus</a> will will cause a parsing error for the onclick attri...
by kevin3442
Mon Sep 25, 2006 9:01 am
Forum: Help & Support for DHTML Menu Version 5+
Topic: Odd display in Firefox--IE and Opera are fine
Replies: 2
Views: 2954

Hi David,

Try removing menualign="center"; from your "Main Menu" definition.

Hope that helps,

Kevin
by kevin3442
Sat Jan 21, 2006 1:40 am
Forum: Help & Support for DHTML Menu Version 5+
Topic: Problem with ChangeItemProperty plugin
Replies: 10
Views: 6724

Hi, Sorry for not replying sooner... I don't think I got an email notification that you had replied to this thread. Either that, or my addled brain just missed it! I do not see any problem with the function; it's exactly as I wrote it. Must be somethuing else. Since I can't reproduce the problem wit...
by kevin3442
Wed Jan 18, 2006 8:02 pm
Forum: Help & Support for DHTML Menu Version 5+
Topic: Can't get menu links to work with pages in sub-directories
Replies: 9
Views: 6152

Hi Linda,

In your test item, try url=/index.html

Does that take you to your home page?

Kevin