2
votes
1answer
65 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
3answers
90 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
131 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 ...
0
votes
0answers
85 views

keylistener added to JPanel not working

The following is a piece of code in a snake game I'm making, and I have trouble with making a KeyListener function. The game is a JPanel inside a JFrame, and the KeyListener is added to this JPanel. ...
2
votes
6answers
175 views

Overriding many methods of many classes in one class

public class EventController extends MouseAdapter implements ActionListener { private EventModel model; private EventView view; String tableClick; Events events; /** ...
-2
votes
1answer
78 views

Java Swing Hangman game win/lost count doesn't work and keylistener is buggy [duplicate]

Possible Duplicate: Java hangman game with gui, problems with incrementing/decrementing numbers So the problem is that I suck at swing, have no idea how to work with the keylistener, which ...
2
votes
1answer
124 views

Adding a JPanel of a Game (that uses KeyListener) via Button Action Listener disables keylistener

import javax.swing.*; import java.awt.*; import java.awt.event.*; import java.util.ArrayList; public class Game extends JPanel{ private static JFrame primary= new JFrame("Game"); private JButton x1; ...
3
votes
1answer
1k views

Snake Game Java Gui

Hello I've started to develop a snake game recently. I'm in the beginning stage where I have a moving object and a dot for it to eat but my main issues are how can I check if the snake "ate" the ...
1
vote
1answer
640 views

Keylisteners/Actionlisteners with Timer not working properly

I'm coding a game and I'm using Java's Swing. And right now i'm trying to get the KeyListeners and Action listeners to work. What I'm trying to do is to make my object to move according to what key ...
0
votes
1answer
4k views

Pass button click event to actionPerformed on key press

I'm working on a Java assignment that has to be done using AWT. I want a button to trigger by pushing the enter key while the button is in focus. I figured out how to do this in Swing with the ...
2
votes
1answer
2k views

Java - KeyListener not working

This has been making me want to tear out my hair all day. I'm trying to make it so when I press the right-arrow key, my speed will go to 10. I know that my methods that make my sprite move work, ...
0
votes
1answer
1k views

OnKeyboardActionListener android keys

I'm trying to implement a way to know when there is a press and a release of a key on a soft keyboard. I have used the onKeyListener to get the down and the up of the key, but the problem with that ...
1
vote
3answers
726 views

Accessing a “nameless” Jbutton in an anonymous class from another anonymous class?

alright I know this sounds a little far-fetched, but let me explain. I created 26 JButtons in an anonymous actionListener labeled as each letter of the alphabet. for (int i = 65; i < 91; i++){ ...