1
vote
2answers
233 views

KeyListener and MouseListener not working

Im working on making a simple Java game and had the great idea of separating my input handling to a separate class then the main game. I am having trouble getting my InputHandler class to actually ...
0
votes
3answers
1k views

MouseListener/KeyListener not working (JPanel)

I'm doing a little project that involves the mouse and key listeners in JPanel. Unfortunately, none of the methods are called when I use the mouse/keyboard. I have worked with JPanels/JFrame/JApplet ...
0
votes
1answer
291 views

Utilising both a mouse listener and key listener in Java

I have a program which moves a an object to the left or to the right. I want to utilise it so that it works with both a mouse listener and a key listener. With both the left arrow key and a left mouse ...
2
votes
1answer
132 views

Why does it draw lines in the wrong place?

I have a problem with this... When I draw a line the character follows the line I drew but the computer paints a line somewhere else: So does anyone know what is going on? My code: ...
1
vote
2answers
51 views

Keyboard Losses focus when MouseListener is active

I am making a two player game applet. Both players need to control their discs to keep the ball from colliding with the wall. One player controls his disc with mouse motion and other controls with ...
1
vote
1answer
162 views

MouseListener and KeyPressed

I've built a simple animation program that moves a box to a direction depending on the arrow key pressed (similar to snake), in JFrame using KeyListener and ActionListener. but I've noticed that if I ...
0
votes
1answer
541 views

Java: JFrame problems with MouseListener, KeyListener, and PaintComponent

I have an issue in which my mouseListener is unresponsive. I have tried to add a mouseListener to one object, a keyListener to another, and a paintComponent to another and then put all the objects ...
1
vote
1answer
268 views

How would I go about including Ctrl+Click as a right-click? (Java)

I have an option to right-click. But users that need to use Ctrl + Click cannot use right-click because Java only allows for the right-click button to be hit. Does anyone know how I can allow for ...
4
votes
1answer
527 views

listening for key/mouse events

Is it possible to listen for key and mouse events without having a gui selected by the user? I want to make a program that runs in the background without a gui and responds to user interaction such as ...
1
vote
1answer
776 views

Adding MouseListener breaks Keylistener

When I remove all of the MouseListener components and run the applet I have to click on it to give it focus, then the KeyListener works perfectly. To solve this I added an "opening page" where you ...