IE on a Mac?
2005/10/24 00:47
Viewed 2889 times
Replies: 1/1

I didn't see it specified, but does this menu support IE 5x on Mac OSX?

last
Re: IE on a Mac?
2005/10/24 04:53
Viewed 4173 times
Replies: 0/0
by Kirk

I just tried it on my G5 running IE 5.23 on OS 10.3.9 and it wasn't working. The main dynarch.com site simply stays at the please wait animated area where the menu should be. Additionally I tried opening most of the examples included in the download and was unable to view the menu (either no indication of the menu or the simple tree of the menu items in list form)

That being said, since MS is no longer developing IE for the Mac, I would only be worried about compatibility with Safari and Firefox, both of which work well with the menu.

Hope this helps,
-Kirk

last
translucent
2005/10/24 02:13
Viewed 3364 times
Replies: 1/2

I've search every file and can't find a sample of a translucent menu. How can I get this feature to work?

last
Re: translucent
2007/08/24 21:12
Viewed 2360 times
Replies: 1/1

I have the same question. How do we enable the menus to be translucent? It's advertised in the site's menu...

last
» Re[2]: translucent, by AshwinKRaj [ quick view ]
Possible to prevent grabbing of Focus?
2005/10/27 20:34
Viewed 2906 times
Replies: 1/4

It seems that in the default setup, when the menu finishes loading the window that it is in will grab focus.... for those users that work with multiple windows this can be very disruptive to flow in cases... is there any way to allow the menus to load without the page grabbing focus? (Couldn't find anything in the documentation/FAQ.) Thanks in advance.

last
Re: Possible to prevent grabbing of Focus?
2005/10/27 20:39
Viewed 4235 times
Replies: 1/3

Sorry, I don't understand--what do you mean by "window grabs the focus"?

last
Open in a new tab/window
2005/10/31 05:23
Viewed 3201 times
Replies: 1/1

Is it possible to open the menu item in a new tab/window ? In other dhtml menu, I can do the right click on the menu item and it opens the browser menu for hyperlink and choose Open Link in a new Tab (Mozilla) or Window (IE), but when I try in hmenu, the right click behaves like left click.

Thanks in advance
Andy Santosa

last
Re: Open in a new tab/window
2005/11/08 15:59
Viewed 4698 times
Replies: 0/0

I agree with that. Also I want the _full_default_browser_context_menu_ when right-click on menu items. This is for my a question of accesibility: default browsers behaviors must not be overriden by htmls, css or scripts if not needed. But with dynarch menus whe have no option (or I have not found the way), behavior is: right clicks are overriden.

Also, two other default browser behaviors overriden by dynarch menus are:

- When the cursor is over an item who is a link, the full url of the link must appear in the status bar or where the browser want these urls to appear. By now the target url is hidden.
- Selection of text over menu items are disabled. Why?

Perhaps some of these behaviors they have to be like now they are, but that is not what I desire. Thanks.

last
IE page load problem
2005/11/01 23:54
Viewed 3225 times
Replies: 1/1

When the page with the menu loads in IE 6, you can see the un-styled format, then it assembles correctly upon full load. Is this why the nav on your site does the "loading navigation". Is there anything I can do maybe with JavaScript to make the nav invisable untill the page is loaded?

http://www.source9.com/review/cadence/

last
Re: IE page load problem
2005/11/11 20:57
Viewed 4942 times
Replies: 0/0

I created an easy solution by making a generic div around the whole thing and making invisable until the page finishes loading:

<script type="text/javascript">
document.write('<style type="text/css">#menu{display:none;}<\/style>');
</script>

see it working here:
http://www.cadenceinnovation.com

last
Context menu for iframe
2005/11/02 13:48
Viewed 3446 times
Replies: 0/0

Hi.
I need a custom but very simple online wysiwyg html editor.
I need to create a custom context menu for this.
I tried to use your product for this, but when i specify the menu for iframe with id iFrame1 like <li class="context-for-iFrame1", it doesnt work (inside of the editable inside of the iframe document still the same default context menu appears), while it works fine for other "standard" html items.

I post this here, becaue in the description it was stated, that this menu should work for ALL html elements!!

Please help me!

Or tell me how is this done in your htmlarea product.

Thank you very very much!!

last
Display popup then redirect
2005/11/18 13:40
Viewed 3368 times
Replies: 1/2

Hello,

I would like some of my menu options to display a popup before actually redirecting to the next page.

I have tried :

<li>
<a href="Mypage.asp" onClick="MM_popupMsg('test text')" >Some Option</a>
</li>

But this doesn't work.

Also, I would like to be able to diaplay a hidden layer called "hiddenlayer" and redirect the user. This is becaue the redirect page performs a large sql calculation before directing onto a page that the user sees and at the moment it looks like nothing is happening, so a nice "please wait" layer would look good.

I hope you unserdtand my two problems and can help me with this excellent product...

Regards,

Mark Handford
CEO, cooltxt.com

last
Re: Display popup then redirect
2005/11/18 13:48
Viewed 4917 times
Replies: 1/1

Well, both problems can be solved by using a JS action rather than combining the two.  Indeed, we don't support the "onclick" argument on the links inside a menu item—that's because the whole link gets replaced with some complicated DOM elements that make up the menu item.

Anyway, here's a possible solution to your problem:

<li>
<a href="javascript:goToSlowAddress('Mypage.asp')">Some Option</a>
</li>

and include this script somewhere in your JavaScript files:

function goToSlowAddress(url) {
// here you can popup whatever you want:
MM_popupMsg('test text');

// and now redirect:
window.location = url;
}

Hope this helps.

last
Google