No dropshadows once uploaded?
2006/08/15 00:46
Viewed 2789 times
Replies: 0/0

After editing my demo page and uploading it I no longer see the menu drop shadows. If I open the HTML file localy rather then off the web server they apear.

Any ideas?

last
how to ignore "DynarchMenu is not defined" error?
2006/08/21 19:50
Viewed 2614 times
Replies: 0/0

Whenever a page is loading and the user hovers the mouse over the menu the error "DynarchMenu is not defined" is thrown. The menu loads and works fine after this point. I noticed the same behavior on this site with the menu, if I hit reload and then put my mouse over the menu I get the error. Is there anyway to suppress this error?
I think you just need a try/catch or a test for the DynarchMenu being valid in your code before you try to use it. Because your js is compressed into one line I can't go in and fix it myself.

last
Memory Leaks
2006/08/23 01:05
Viewed 2770 times
Replies: 2/4

I tried using some tools to find where my memory leaks are, and they point to hmenu.js. Both Leak.exe and the Leak Monitor extension for FF (https://addons.mozilla.org/firefox/2490/) show leaks. They show them for this site as well. It is difficult to deploy if we end up crashing end users browsers as they take up all the memory.

last
Re: Memory Leaks
2006/08/23 01:07
Viewed 4323 times
Replies: 0/0

Just browsing this site seems to leak 1MB per page view. :(

last
Re: Memory Leaks
2006/08/25 07:57
Viewed 3957 times
Replies: 2/2

We carefully tuned DynarchMenu to prevent memory leaks. However, addition of latest features might create some leaks--though I'm not sure. OTOH, on our website we use a lot of other in-house scripts besides DynarchMenu. Those were not designed for IE leaks, so you shouldn't use our website as a reference.

I will try to look into it.

last
Menu item window popup
2006/08/30 03:30
Viewed 2799 times
Replies: 1/2

Hi,

Just wondering how to have a new window pop up when clicking on a menu item (ie. window.open()). The onclick event doesn't seem to get fired and I need to control the new window so target="_blank" is not an option.

Thanks in advance for any help.

Scott

last
Re: Menu item window popup
2006/08/30 11:50
Viewed 4316 times
Replies: 1/1

Try assigning the onclick event on the <li> element, rather than the <a>.

last
Getting hmenu to work in blogspot
2006/09/05 06:03
Viewed 2819 times
Replies: 1/1

I uploaded hmenu to my server. Now I want to use this in blogger (xxx.blogspot.com).
I gave

<script type="text/javascript">
var _dynarch_menu_url = "http://domain.com/hmenu/";
</script>
<script type="text/javascript" src="http://domain.com/hmenu/hmenu.js"></script>

Im guessing the issue is with _dynarch_menu_url which doesnt read absolute locations ?

Thanks

last
Re: Getting hmenu to work in blogspot
2006/09/05 06:13
Viewed 4299 times
Replies: 0/0

Sorry - It does work - forgot to include the css link.

last
Linkware License
2006/09/05 15:23
Viewed 2671 times
Replies: 0/0

Hi

Regarding the Linkware License - Is it acceptable to place the backlink within the menu itself ?

Thanks

last
avoid the message: error: menu element not found
2006/09/12 11:07
Viewed 2905 times
Replies: 1/3

Hi!

How can I avoid the messagebox:
error: menu element not found within pages, where I do not have a DynarchMenu?

I have many pages and they all include "header.php". header.php is the place, where the body-tag
is located (including call of DynarchMenu.setup).

I have no chance to customize header.php -> this file must be the same for every
page (with and without a DynarchMenu).

Thanks!
digo

last
Re: avoid the message: error: menu element not found
2006/09/12 14:20
Viewed 4294 times
Replies: 1/2

A simple workaround is to include this script section in your pages, after including hmenu.js:

<script type="text/javascript">
DynarchMenu.__orig_setup = DynarchMenu.setup;
DynarchMenu.setup = function(id, args) {
var el = document.getElementById(id);
if (el) {
return DynarchMenu.__orig_setup(el, args);
}
};
</script>
last
menubar external definition
2006/09/19 12:58
Viewed 2674 times
Replies: 1/5

hello,

the answer to my question is perhaps in a previous post on this forum, but I haven't found it.

I want to define an unique menubar for many pages. To achieve that, i plan to define it in an external file (html, js ?) loaded in every page of my site. Could someone give me a solution to do that ?
Thanks a lot
Best regards

last
Re: menubar external definition
2006/09/19 13:02
Viewed 4160 times
Replies: 1/4

Just include the HTML that defines the menu with any mechanism provided by the server-side scripting language that you use, i.e. PHP or Perl, etc. Should be quite easy.

If you don't use server-side scripting (i.e. all pages are static) then it's more complicated.. You should try using Apache SSI (server-side includes), if you're using Apache; otherwise I can't help you.

last
Google