views:

86

answers:

1

I have an extension that can be placed on any toolbar (like the bookmarks, menu or status bars). In general, the context menu opens downward, but when placed on the status bar and Firefox is closed to the bottom of the screen, the context menu opens upward. I'd like to try reordering the context menu based on its up or down orientation, so that the same options are always closest to the mouse.

For example, when opened downward it appears like this:

--> (mouse)
---------------
- MenuItem A  -
---------------
- MenuItem B  -
---------------
- MenuItem C  -
---------------
- .......     -
---------------

When it opens upwards its like this:

---------------
- MenuItem A  -
---------------
- MenuItem B  -
---------------
- MenuItem C  -
---------------
- .......     -
---------------
--> (mouse)

However, I'd like "MenuItem A" to appear closest to the mouse at all times, since its the most common item. I can render the items dynamically, so I really just need to find out the orientation.

A: 

When developing a FF extension, the MDC docs are invaluable. Be prepared to spend a lot of time there.

There is also a lot of really great help on irc.mozilla.net in various channels. Most pages on MDC will tell you the relevant channel for the page you are looking at. Look for "discuss in irc" in the upper right-hand corner.

Some possibly relevant docs for you:

https://developer.mozilla.org/en/XUL:menupopup#a-popup.position

https://developer.mozilla.org/en/XUL:menuitem

https://developer.mozilla.org/en/XUL:Attribute:insertbefore

MisterMister
Thanks for the links... I've already checked those out though and haven't found any way of knowing whether the popup is opening up or down.
Jon