0
votes
1answer
23 views

Java JMenu actionPerformed doesn't work

So, I've implemented anonymous action listener to JMenu component, so I'm wonder is it possible for JMenu to do some action with out JMenuItems in it, just JMenu, for example... Exit? @Override ...
0
votes
1answer
25 views

A comparable sorter

I'm trying to get my code to compare the height of my randomly generated objects and sort them in ascending order. I'm currently having trouble understanding some basic concepts and as much as I read ...
0
votes
1answer
29 views

JButton ActionListener general inquiry

Coming out of high school a few years ago, I've always been taught two ways to add an ActionListener to a JButton. One way is like this: JButton myButton = new JButton("My Button!"); ...
-2
votes
2answers
41 views

java animation trouble getting the x and y cordinates of the mouse

so i wrote this code but im not sure of where does the mouse listener goes and also how to loop the program. im trying to achieve a particle explosion passing the x and y coordinates of the mouse when ...
0
votes
1answer
21 views

Determine who call stateChanged

I have a few sliders that look like this: //Create the slider JSlider speedSlider = new JSlider(JSlider.VERTICAL, MIN_SPEED, MAX_SPEED, initValue); speedSlider.addChangeListener(controller); ...
1
vote
1answer
40 views

Java Swing Button Listeners not working

I have two button listeners for game board using java swing. A tetris grid is created initially and then addition functionality within each button listener. I set the board up like so in my ...
1
vote
1answer
28 views

keyReleased() method with Key Bindings in Java?

I'm a little bit new to Key Bindings, as I have been using KeyListeners for the majority up until recently when KeyListeners proved to be my biggest obstacle. I'm wondering how you would program a ...
0
votes
1answer
43 views

Where have I messed up regarding creating a Game Menu?

I am trying to create a basic game menu for a game right now. I am just testing out the menu for now, and most of the options I wrote are just to test out whether the menu actually works or not. So I ...
0
votes
1answer
24 views

JButton Error Cannot be Applied to Given Types

I'm working on a simple Java GUI, but an error came out about the method addActionListener of the JButton when I applied it. Here are my codes. The error is marked with ERROR. import javax.swing.*; ...
0
votes
3answers
50 views

Java keeps giving me my coordinates multiplied by 93

When I set X and Y values for my array of JButtons, I get back the correct values only multiplied by 93. I can solve the problem by dividing the value by 93 but I would rather find out where the bug ...
0
votes
0answers
31 views

JList is not updating correctly when action listner is a thread

I have a button ActionListener that is a Thread. Within this thread's run method I try to update a JList setListData() method and it does not update. It worked with a combobox but not a JList. I ...
4
votes
1answer
43 views

What is the difference between having common or separate actionPerfomed method

Please help me understanding the difference between adding the action listener to JComponent in following two approaches. First Method: Implementing actionListener to my class and adding the common ...
1
vote
0answers
48 views

Calling trayIcon.displayMessage() from method

I know below way to show a balloon message: something.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) { trayIcon.displayMessage("Tray", "Icon", ...
0
votes
2answers
42 views

How to incorporate 'public int' in actionPerformed button?

This is some ode that after declaring values in the fields.getText() it calculates a formula by a recursion function. However java does not see to like having any 'public' under actionPerformed ...
0
votes
2answers
35 views

Thread sleep in actionPerformed

I am trying to make a tiny program that has 3 buttons, all of them of white color. Pressing the first button (that has the text "Go!") will cause the second button to become orange for 3 seconds and ...
1
vote
1answer
49 views

Java - Action Listener only responds to one if statement?

I am currently making a custom Minecraft Server launcher in Java and have got to an early stage where I'd actually like buttons to do something. I managed to get one button to respond (the start ...
0
votes
1answer
31 views

actionPerformed from an array

My Java JComboBox is made up array for loop Assume that combo box is will list: "Argentina Vs USA" // array[0] "Brazil Vs Canada" // array[1] "Canada Vs Netherland" // array[2] "Holland Vs ...
0
votes
2answers
36 views

Accessing Variables in JFrame

If I have the following Java code: import javax.swing.JFrame; class GuessMyNumber extends JFrame { public static void main(String[] args) { InputBox box = new InputBox("Guess a number ...
0
votes
1answer
72 views

Action listener actionPerformed does through code double

I have been grindig my gears over this one for a while now, but have not been able to solve it. In this memorygame, every time you choose a button and then the upper left one (the first time that ...
0
votes
2answers
43 views

Java Button Handler

I am having an issue handling button events. I am creating a program that lets the user select the type of pizza they want and the program calculates the price of the pizza. I have my layout setup, ...
0
votes
2answers
110 views

Nothing happens when button is clicked

I'm writing a program in Java where I'm using JTabbedPane. Each tab is associated with a different panel with labels, textfields and a button. I have used GridBagLayout in the panels. I have added an ...
0
votes
2answers
43 views

calling within ActionListener

I'm trying to plug my code into my GUI at the moment i can't find a way to call text in the ActionListener with out breaking my code I know there are some things in findAndReplace() i will need to ...
-2
votes
3answers
44 views

DRY code to implement action listener (JAVA) [closed]

I'm now implementing a tray game, in which i use some JButton to represent the tray. But the tray makes 7x7, so to implement the action listener it's not so fun. I have a code like this now : public ...
0
votes
2answers
42 views

Change a label text that it's declared after my ActionListener

What I'm trying to do here is that every time that i press a button and select an image the text of a label changes to the path of that image. Here's my code: public Frame() { ...
0
votes
3answers
68 views

Unable to type or delete text in JTextfield

I'm learning Java using Art and Science of Java (using Java SE 6u45). Trying to Change the font of text by entering the new font type in a JTextField. But the problem is that I can't enter any text in ...
3
votes
2answers
55 views

How do I pause a method until a button is pressed?

I am designing a software with multiple components - each with its own actionlistener. For an example, I have a JPanel with a cardlayout that holds 10 cards - each its own JPanel and purpose. On one ...
0
votes
1answer
39 views

JCombobox Listener how to enable it when item is selected?

I have a JComboBox that displays Name From database Patients_Details public void ComboItem() { chooser.removeAllItems(); chooser.addItem("Please Select..."); try { String sql="select * ...
1
vote
7answers
58 views

Events and Listeners in Java

This should be a basic Java program for beginners to be found on "Head First Java 2nd Edition" on the topic of ActionListener interface. I didn't understand some of the terminologies used in this ...
0
votes
1answer
60 views

How to add ActionListener to JMenuItem? [duplicate]

I'm trying to add ActionListener to JMenuItem in my java menu. Here is a screenshot of the menu: I want to add ActionListener to "Rectangle" JMenuItem in order to show up the rectangle shape upon ...
0
votes
1answer
72 views

My Java Actionlistener won't change a JTextArea when a JButton is pressed

This is my-almost completed Choose Your Own Adventure Game. The Actionlistener is broken. It works for the 'teh internets' part, but the rest of the Actionlistener won't make the buttons change the ...
0
votes
2answers
45 views

Change the color of circle on button click

How to change the color of circle on click button in Java? Here is the code package circle; import java.awt.Color; import java.awt.Graphics; /** * * @author Akmal */ public class NewJApplet ...
0
votes
2answers
82 views

Java GUI Action Listener with Inner Classes

I am working on a LAB for one of my classes and am in need of some assistance. I am building an Apartment Complex GUI which will have a menu system and individual functions between many different ...
0
votes
1answer
40 views

How to initiate an action upon clicking a jbutton in Java

I'm wondering how to initiate an action if a jbutton is clicked on in my JFrame. I've tried searching for answers but haven't had much luck. This is all i have right now, i basically just want some ...
0
votes
2answers
61 views

Implement color change using action listener

I have an assignment that calls for a ball to move around the screen based on which button the user clicks and for the ball to alternate between red and green with the click of another button. It all ...
2
votes
4answers
83 views

How does the ActionListener work?

I found similar code to the following on Oracle's website. I stripped some irrelevant stuff regarding layout for space reasons. private JTextField textField; public class TextDemo extends JPanel ...
0
votes
1answer
44 views

Removing/Adding JComponents depending on if boolean equals to true or false

In a game that I am currently making I have just created a starting screen. That starting screen have 4 JButtons Play, Options, Credit and Quit. If you press Play another JButton will appear, New ...
0
votes
3answers
41 views

Adding a JButton when another JButton is pressed

I have a JButton which I want to create a new JButton with when it is pressed I have added an ActionListener that looks like this, but it doesn't add another JButton. public void ...
-1
votes
2answers
63 views

Selected item in combobox will notadd to textfield?

I have the following code but i keep getting errors. void is an invalid type for the variable itemStateChanged This is the error message but when i take void out i get syntax errors. Can anybody fix ...
1
vote
1answer
38 views

Multiple ActionListeners creating problems

I think some how my actionListeners are messed up. I am supposed to have two blocks of buttons. First panel is 16 buttons x 16 buttons(256 buttons total). Second panel is 8 buttons x 2 buttons(16 ...
0
votes
2answers
75 views

Make a Swing Timer execute N times?

How can I adjust this Timer code so that it executes four times and then stops? timer = new Timer(1250, new java.awt.event.ActionListener() { @Override public void ...
0
votes
1answer
50 views

Jtable not returning the last cell value

This is my Table class package build; import java.io.BufferedReader; import java.io.BufferedWriter; import java.io.File; import java.io.FileReader; import java.io.FileWriter; import ...
2
votes
1answer
53 views

GUI Halt when starting server using ServerSocket

I'm trying to create a simple Chat program, I found all kinds of example but yet I do try to accomplish it from scratch. I have Server class (extends thread) and a GUI class, when either Connect or ...
0
votes
2answers
44 views

Adding ActionListener in for cycle throws StackOverflowError

I am getting java.lang.StackOverflowError when I run this code: Map<JButton, Integer> buttons = new HashMap<JButton, Integer>(); JPanel main = new JPanel(new GridLayout(4, 4, 4, 4)); ...
2
votes
1answer
66 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 ...
0
votes
2answers
44 views

GUI Interface exception in eclipse

I am a new comer to java and currently teaching myself via the HeadFirst java book. I was going through GUI interfaces and the code from the book does not seem to run, import javax.swing.*; import ...
-1
votes
1answer
28 views

Can't Get ActionListener to work

Here is the code, Account is some basic class that doesn't do anything special. I have tried everything to get this action listener to work and I know I am missing something silly. I made the GUI in ...
0
votes
1answer
34 views

FlowControl in ActionListener method in Java When JButton Clicked

Please someone explain me the control flow of ActionListener , for example we implemented t in our class registered with a component and did override actionPerformed(ActionEvent e) now i ...
1
vote
3answers
67 views

Get SelectedItem from Combobox

Like this i can output the selected value from the ComboBox.. public static String selectedString(ItemSelectable is) { Object selected[] = is.getSelectedObjects(); return ((selected.length == ...
0
votes
1answer
46 views

Switching JPanels - Doesn't switch when clicking button

I've made a program and i'm having difficulty with switching JPanels on the click of a button. There are four buttons> "Time" "Hotels Menu" "Price" and "Exit" Exit was simple to do. The rest need ...
0
votes
1answer
61 views

How do I send information from my Overridden ActionListener method to the main method in Java?

Basically, I'm a newbie creating a program that gives questions, randomizes the index of the right answer and then displays the questions in a JFrame. I can easily perform any tasks that I add to this ...

1 2 3 4 5 14