Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Okey straight to the point.

The problem I'm encountering is this: I have a small game, which runs on JFrame with Canvas. JFrame adds KeyListener. Everything works properly, but when I click on my JFrame inside it the code partly freezes (if I click on framework, nothing happens). My game loop seems to be working (still prints out fps and ticks). This seems to be problem with KeyListener. Anybody encountered anything like this before?

Edit

I have solved my problem. Sorry for disturbing you people. I don't know why, but the problem seems to be that I add my KeyListener to the JFrame. I changed it to be added to my Canvas and it works like a charm.

Ok bye :)

share|improve this question

closed as not a real question by dbyrne, jlordo, competent_tech, brian d foy, Jarrod Roberson Jan 15 at 2:03

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

I bet you are not using Concurrency in Swing.

Your code should look like this:

SwingUtilities.invokeLater(new Runnable() {
    public void run() {
        createAndShowGUI(); //here you create JFrame
    }
});

public void createAndShowGUI () {
    JFrame frame = new JFrame();

    frame.getContentPane().add(...);

    frame.pack();
    frame.setVisible(true);
}
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.