I need to invoke a JDialog on keypressing F1 to display help in my Swing application.
I wrote a KeyListener for my main frame after setting the focus to it (i.e.
by using myFrame.setFocusable(true) )
The problem arises that I need to be able to invoke the Help JDialog even when the
current focus would be on another components in my application. Thus, unless the
focus is on the main frame, which is possible only when the application is started,
the KeyListener won't listen to the F1 key press. Thus, even though the current
focus might be on some other component in my app, I still somehow need
the focus on the main frame so that the KeyListener could be invoked.
This, to me, is tricky because I need the frame focus as soon as I hit the F1 key.
Is any improvisation possible in this case?
