>I would like my JMenu to stay visible after certain JMenuItem selections
>are
[quoted text clipped - 3 lines]
> selection. I would include an "Exit" item that would dismiss the menu. I
> could not determine how to do this from either the docs or NG posts.
Don't have any experience in attempting this, but my first attempt would
probably be to override the mouse listener on the JMenu, and do my own
manual processing of the click events.
Incidentally, I think this sounds like a rather poor GUI design idea,
and violates the rule of least surprise. Have you considered putting all the
radio buttons on a JFrame which can be dismissed/hidden using a JSplitter?
- Oliver