Linux / Firefox
2005/04/04 12:22
Viewed 7460 times
Replies: 1/6

Hi - I am trying out your demo menu at the moment and love it. However I cannot get any menu's to display in Firefox on Linux. Any clues? Is this the case with the evaluation version? When I look at your website sample menus using Firefox/Linux they appear work fine.

I really need to know for certain what is happening here before I can consider purchasing the menu script.

Thanks for your help...

last
Re: Linux / Firefox
2005/04/04 12:33
Viewed 9697 times
Replies: 2/5

Linux is our development platform, so anything we do works with it, at least in Firefox. Including evaluation versions. 8-)

Perhaps there's something wrong with your code?

last
Flash and Firefox
2005/04/06 22:35
Viewed 12180 times
Replies: 3/5
by Matt

Hi, I am currently using the eval version to verify that things will work correctly for me. So far, mostly good. I have a menu in a page just above a Flash object (a clock). The dropdowns from the menu get placed behind the flash object. I attempted setting z-index values for the div my menu is in (which, by the way, is done because of someone else's post. It fixes the problem of IE6/Win displaying the dropdowns about 10 pixels to high.) and for the flash object itself. So, flash div index = 0, menu div index = 100. Doesn't work. If you would like to see a picture of what this looks like go here: http://www.elementalvoid.com/menu/flashbad.gif Unfortunately, I cannot post source code nor the dev page because it is all behind a user login with sensitive customer info...

The menu system works just fine in IE6/Win. The flash object gets put behind the menu.

Any help greatly appreciated.
Matt

last
Re: Flash and Firefox
2005/04/07 17:59
Viewed 14495 times
Replies: 0/0
by Matt
Sorry, originally forgot to post the image on my server. It is there now...
last
Re: Flash and Firefox
2005/04/07 19:02
Viewed 14601 times
Replies: 1/2

I am sorry but there is no solution to this problem. But at least, it is not our fault--it's the way browsers are implemented. You'll most likely find the same problem in Opera, Safari and Konqueror too.

last
Re: Flash and Firefox
2005/04/11 06:39
Viewed 15172 times
Replies: 0/0
by Matt

I have found a workaround (more of a fix) for this problem. I thought that I should post it here for your information and others.

The first thing that I tried to do was put a div container around the flash object and use CSS to set its position and z-index. This didn't work. After much searching and more reading, I ran across someone with a solution. It is a general Flash solution for layering HTML and Flash content. (link: http://joshuaink.com/blog/82/flash-content-and-z-index)

First, wrap your flash content in a div container with id="flash" or whatever name you want. Then make sure that you add <param name="wmode" value="transparent">to your object tag. Also make sure to set wmode="transparent" in the embed tag.

Now, use css to set the position and z-index for your div. —> #flash { position: relative; z-index: 0; }
Don't set negative z-index values. It will make your Flash disappear.

CSS Part:

#flash {
position: relative; /*or absolute*/
z-index: 0;
}

HTML Part:

<div id="flash">
<object .... >
 <param name="wmode" value="transparent">
<embed .... wmode="transparent">
</object>
</div>

That's it! Your Flash content will now behave and let the menu show up on top. Have tested in Firefox 1.0.x and IE 6/Win. Will soon test in Safari, Firefox for Mac, Camino, and IE for Mac. I will post to let you know their support.

Hope this helps someone other than me.

last
menu refresh
2005/04/14 19:22
Viewed 7937 times
Replies: 0/0

First...I LOVE YOUR MENUS and plan to buy if I can get a few things worked out.

I have a context menu that uses the css class to change the menu being displayed. During my program I change the className property of the division to another that should show a different context menu, however the old menu still shows up. Is there a way to refresh the menu structure or am I doing something wrong?

last
Creating Context Menus
2005/04/27 04:49
Viewed 7616 times
Replies: 1/1

Hi! I want to use the menu system to create contextual menus. I love the fact that you can attach one menu to many objects, but I also have a need to customize the menu itself before displaying it. Is there an example of creating contextual menus on the fly?

last
Re: Creating Context Menus
2005/04/27 10:30
Viewed 9598 times
Replies: 0/0

This isn't easily possible at this time, sorry about it...

last
Menu bar width
2005/04/27 05:43
Viewed 7995 times
Replies: 1/2

I would like to create a menu where the width of the menubar is only as wide as needed rather than 100% of the available space. Thanks!

last
Re: Menu bar width
2005/04/27 10:27
Viewed 10107 times
Replies: 1/1

Well, the menu toplevel parent element is a DIV and as such, it occupies 100% of the available horizontal space. However, you have several options:

(1) Add the following in some CSS section:

div.dynarch-horiz-menu {
float: left;
}

This will make the menubar float at the left; you can try “float: right” too.

(2) Embed the menu in some table element and size accordingly the cell that contains the menu.  Normally you should be able to undersize it (say 1em) and it will scale to the minimum size required for the menu to fit.  But beware Internet Explorer (5.x I think) might break spaces in menu labels in this case, use “&nbsp;” or add “white-space: nowrap” in that table's style attribute.

Hope this helps.

last
Shadow Problems
2005/04/27 23:48
Viewed 7687 times
Replies: 0/0

Seems that shadows don't work if you put the hmenu folder somewhere other than at the base of the site. No such issue with the JS itself, nor with the sylesheets and their images, nor with the arrows, etc. Just the shadows ignore the _dynarch_menu_url setting.

last
Google