Redirecting keystrokes to other components
I have a chat program with several components on it, one of them is a JTextField that is used to send chat messages. It would be nice to be able to start typing into the field even when the focus is on one of the other components (the room user list, for example). I'm not quite sure how to go about setting that up. I would like to be able to use arrow keys and pg-up and pg-down on the other components before the user starts typing, but to have the focus go to the JTextField after.
Any suggestions?

