> Yes, it is fixed with the .91 beta. Thanks
My pleasure.
> It's not a problem but one note: getChildByID only works for menuitems in
> "shown" but works for form items in "initialize" and "shown."
When I update the docs this weekend, the reason for this will be
clear. For the top level form (the one set as the content pane for the
frame), we have to do some special handling because the menu isn't
actually contained by the form in the component hierarchy. We do some
special wiring to make things like getChildByID work. Its important
that the menu actually be set on the JFrame via setJMenuBar to ensure
the keybindings work correctly and because some Look and Feel
implementations behave strangely if the menu isn't installed in this
manner. The framework takes care of doing this for you. From an SDL /
Swing perspective, we treat the menu as a child of the form. Our goal
is to abstract these details and make things as simple as possible.
Dan