1
vote
0answers
37 views

KeyPressed and KeyReleased does not work correctly

I have the following code in a game I am programming: public void keyReleased(KeyEvent e) { int key = e.getKeyCode(); if (key == KeyEvent.VK_SPACE) { doIShoot = false; } } public ...
0
votes
2answers
32 views

Gradually speeding a sprite

I'm trying to make the sprite speed-up gradually on button press and not to move constant speed only. Also set a max-speed limit. I hope you understand what i mean. timer = new Timer(5, this); ...
1
vote
2answers
30 views

Create a shortcut in JFrame

public final class UserPage extends JFrame{ public UserPage() { this.addKeyListener(new myclass()); this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); this.setSize(1000, 600); this.setLocation(300, ...
1
vote
2answers
30 views

KeyListener - Ignore Key Released When Holding Down (Ubuntu, …)

I have a game where you can attack. When the SPACE-key is pressed, the weapon moves down, and when it's released it should move up. The problem is that on (certain) UNIX systems, the KeyReleased ...
0
votes
1answer
21 views

Reset/restart my minigame using KeyAdapter with Thread on a JApplet

I can't seem to get my game to reset. What I want to happen is once the numLives gets to 0 message should display: press R to Restart I added what I thought was a KeyListener for 'r' and it ...
0
votes
0answers
22 views

Why won't my avatar move.

This is the code. The box will not move even if I click a directional key. So, I want to know what's going on. Can you help me? Thanks in advance! import java.awt.*; import javax.swing.*; ...
-2
votes
0answers
24 views

Learning about keyListener in Java

I'm a kid that is trying to learn how to program in java and I recently started learning about JFrame and the GUI at my school. On my own, I learned about something called a KeyListener. In my ...
0
votes
0answers
30 views

requestFocus() not working with show() method

I'm making a game where the program has to show one panel, and from that panel show the previous panel, and then show the first panel again. To make things simpler, let's say we have PanelA and PanelB ...
2
votes
2answers
45 views

Keylistener not working for JPanel

I am trying to do something when one of the arrow keys are pressed using the KeyListener in my JPanel class. Here is my code: public class TestPanel extends JPanel implements KeyListener{ public ...
0
votes
1answer
40 views

KeyListener wont focus

I'm new to Java so please forgive me asking for help, but after 4 hours of searching for a solution I'm really getting desperate. I'm currently setting up a game and want to implement key controls. I ...
0
votes
1answer
20 views

Simple Applet Game Bug

I'm having trouble with my applet. It's purpose is to create a game where you can move a block at the bottom of the screen to fit through holes in blocks that are falling down from up above. I've ...
0
votes
0answers
33 views

Adding Button in North Layout area Broke my Iconified action?

I come today with a strange issue. I added an KeyListener to Iconify my JFrame by pressing the "Windows key", but when I add a component in the North area of my Layout I can't Iconify my app anymore. ...
-1
votes
0answers
39 views

KeyListener Java not functioning

I'm writing a simple Pong game. I have a Paddle class that extends the JComponent class and a Player class that extends JComponent as well. I tried both p1.addKeyListener(new MoveButtons()) and ...
0
votes
2answers
33 views

Finding keycode of multimedia key in java

I want to capture key presses on Windows like Fn+Pause, Fn+VolumeUp in my Java Application but I am unable to detect their KeyCodes. addKeyListener(new KeyAdapter() { @Override public ...
0
votes
0answers
61 views

Keypress not responding [closed]

So I have this code and when I run it I should be able to move the player in the move class, but for some odd reason the keypresses are not even being detected. I can tell because the console never ...
0
votes
0answers
44 views

KeyAdapter doesn't work

I'm creating a simple Pacman game and in the beginning I wanted to make my Pacman move. However it doesn't response to key presses at all. I read many topics with same problem here, but it was mainly ...
0
votes
0answers
21 views

JTextfield KeyListener, generate string when enter key is pressed [duplicate]

i have created a simple Java chat with a simple GUI, and i would like to add the option that when the ENTER key is pressed, the text that was entered in the Jtextfield would be inserted into a String ...
0
votes
1answer
46 views

Buffered Keyboard Input

I am trying to write a 2d graphical game. In this game I have keyboard inputs to move a square block on a black plane. I order to ensure smooth key motions I want to use Buffered key input. In order ...
0
votes
1answer
34 views

Java KeyListener “object update”

I've got a KeyListener class called Keyboard which implements KeyListener's methods. There are 4 states keys can have with it (UP, ISUP, DOWN, ISDOWN) all representing whether they're down, or they ...
0
votes
1answer
23 views

KeyListener not working

public class KL implements KeyListener { public static void main(String[] args) { final JPopupMenu popup = new JPopupMenu(); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); ...
-1
votes
1answer
46 views

How can i record each keyboard input in text file?

I would like to record every keyboard inputs into text file without using keyListener How can I achieve this?
1
vote
3answers
45 views

KeyListener not reacting at all

I've been trying to fix this issue for about 5 hours now, but I just can't figure out why my KeyListener is not reacting at all. It doesn't even seem like it gets to the point where it looks for a ...
0
votes
1answer
41 views

How to get a JTextField to respond to the enter key

So I want to get a JTexField to put the text in it into a JTextArea when the enter key is pressed with the cursor in it. Can anyone help?
1
vote
2answers
36 views

Key listener and key bindings doesnt work every compile

Basically i have created a key listener connected to my JPanel.. And sometimes when i compile and run it it does work realy good and no problems what so ever.. But then sometimes when i compile it ...
2
votes
2answers
49 views

Java KeyListener stutters

I'm making a very simple pong game in java and I'm doing this using KeyListener. I want it so when the user presses the right or left keys on the keypad, the pong block goes in that direction. This is ...
0
votes
1answer
48 views

Beginner Java Program— cannot get key pressed to work

I am starting out with Java and I have a problem. When people click "a" on the java applet, I want it to draw a yellow rectangle and if they press anything else it draws a black rectangle but nothing ...
2
votes
1answer
64 views

Call actionPerformed Method using normal method of class

I am trying to call the actionPerformed() in normal method of class. I know that it get automatically executed on whenever button get pressed. But I want to call that method when ENTER button get ...
1
vote
1answer
57 views

java keyPressed event keeps triggering while key pressed

I have a MIDI piano program that triggers a note to be played when either the mouse is clicked on the note, or a particular keyboard key is typed. I'd like the keyPressed event to behave the same way ...
1
vote
3answers
32 views

KeyListeners not responding when added to JFrame

I've been reading the java documentation and am trying to understand key listeners and their uses. I managed to make a simple program where 'w' and 's' toggled the background colour, however when I ...
0
votes
0answers
36 views

Determining if input is from the user

I'm trying to figure out if the input sent to an applet is from the user or not and at the same time, send fake input to the applet as if the user entered it. I did not create this applet; I load it ...
0
votes
1answer
59 views

Wicket call method after pressing enter

In my Wicket application I would like to call a method by clicking on a button. I googled and found some solutions for wicket forms, but no easy solutions for panels without a form. Is there a easy ...
0
votes
0answers
45 views

Problems with KeyListener and CardLayout, only works the first

I've several JPanels with different Key Listeners in the same CardLayout, but when I change the visible panel, the KeyListener of the next doesn't work. I don't know why, because all my panels are ...
0
votes
1answer
49 views

Slick2d | TextField character passing

The problem: I wrote some GUI stuff (a button) for my game. But Im stuck at creating the TextField, becouse the KeyListener is not working. I tried to implement the KeyListener but did not work. ...
0
votes
2answers
54 views

Java | KeyListener | Basic

How can I change or hide that JTextField from showing to the user and still get the users typed keys? I tried using "KeyCodeT.setVisible(false);", but it didn't work. This is what I'm talking about: ...
1
vote
1answer
83 views

Selecting text in JTextArea does not show any selection color

I have this piece of code in which a JTextArea is added to a JFrame. Whenever the user presses the ↑ key the content of the JTextArea should be selected. Here is the code import javax.swing.*; ...
1
vote
1answer
54 views

LWJGL holding a key pressed

So basicaly what im trying to do is using LWJGL now making my player move in the game. The player is currently moving but he doesnt keep mooving while you are holding the button.. public void ...
0
votes
2answers
39 views

KeyListener is not working

The following code is not working. I am trying to move a player left, right, up, and, down using key pressed method but when i press the keys it does not respond. I did not paste the whole code just ...
0
votes
1answer
64 views

Restarting the game after game over

in the game that I made I have an game over screen that shows your score, now I want to make the game restart if you press space so that you dn't need to close the program and open it again to play it ...
0
votes
1answer
176 views

Enter Key Listener for Date is not working in linux flavours

Here is my full coding.I have Two class firstone MyDateTime and Second one is Employee. i have included currently working coding of mine.For the EmployeePart class,AbstractEditorPart is our own parent ...
0
votes
2answers
44 views

Adding KeyListener to custom objects

I am in the process of refactoring a lot of code for our game to make the object-couplings as nonexistant as possible (for easier testing and future implementations). Currently my JFrame listens for ...
-2
votes
3answers
75 views

Key listener with if statement. Sokban game [closed]

I need help with creating this KeyListener. I am trying to create it so that for each of the button (up, down, left, right), the Player on the board is moved in that direction if the space is open. ...
0
votes
2answers
115 views

KeyListener doesn't work

I'm programing a game Bomberman-like, and I have a problem with my KeyListener. The thing is, when the game is running, the KeyListener doesn't respond, but when it's not running, it does what I tell ...
0
votes
1answer
63 views

Moving JFrame with arrow keys?

I want a normal JFrame that moves across the screen keys. It turns out not all that easy. For some reason I get a rough code e.getKeyChar () It is even possible? I think that we have to somehow ...
1
vote
1answer
147 views

Java 2D Game dev: Multiple key input

I'm trying to get the controls working for a 2D game written in Java. However, I'm encountering an odd bug in movement. Whenever I'm trying to use the up and left controls while firing (space bar), or ...
1
vote
1answer
107 views

Java 2D Rotation and Global Coordinates?

I am making a simple game where there's an object (a square with a rectangular barrel) that looks towards the mouse. The rotation part works pretty well, but I want the object to move when a button is ...
0
votes
1answer
70 views

create a thread that will write each character typed using keyboard

I am trying to create a thread that will create a text file and will write each and every character typed on computer using key listener but i am not getting how do i append the created file with next ...
1
vote
1answer
49 views

Best way to remap input of certain characters/keys to a JTextComponent?

I am working on a JTextPane that works (almost) exactly like the tags input field here on stackoverflow. For that I am converting text to components as soon as a user hits enter, tab or space. ...
0
votes
1answer
54 views

How to get a DocumentFilter to work with a JComboBox

I tried this before with a DocumentListener, but that gave me too may issues with editing the Document after I heard something. Now I'm trying to do the same with a DocumentFilter, which appears to be ...
1
vote
3answers
89 views

Listener inside a loop won't allow to change an outsider boolean flag

Following my previous post here , I wrote a listener : @Override public void keyTyped(KeyEvent keyEvent) { PolygonFiller polyFiller = new PolygonFiller(); char key = keyEvent.getKeyChar(); ...
1
vote
2answers
126 views

Add a keyListener inside a loop ? Is it possible?

I have listener that enters this code : someBoolean = true; case FILL_POLYGON: { if (greenLightForFilling == true) { while ...

1 2 3 4 5 9