0
votes
1answer
41 views

Button won't do anything Java

I have looked over my code for a while and can not find why my button won't work. My "startButton" works when clicked on but my "helpButton" won't. When I click on the button it wont run the println ...
0
votes
0answers
21 views

JTable when edit row, change ENTER action?

I have problem with JTable. I need to edit some row, but when i finish and press ENTER, i want change action like save in Database. This is my code: // JTable PDV tablePDV = new ...
2
votes
1answer
61 views

How to add buttons inside a cell of jtable and give it action

i know this has been answered before but considering im still a newbie i cant figure out a way to give actions and block the cell editing, i have tried it in several ways,i can successfully render the ...
0
votes
1answer
57 views

Trying to execute a method once, on a JButton

I'm currently working on a java project to keep me busy for the summer. I've just finished my first year of University so I have a basic knowledge of Java and how it works. For my project I've decided ...
1
vote
1answer
50 views

No action perform when Window Frame closed in Java

frame.addWindowListener(new WindowAdapter() { @Override public void windowClosing(WindowEvent b) { // Do stuff if (socket != null) { ...
-1
votes
4answers
66 views

actionperformed not sensing button click

So I have some button: static JButton rpsls = new JButton(new ImageIcon(rpslsscaled)); where rpslsscaled is some image. So I try to get the button public class SomeClass implements ActionListener{ ...
0
votes
1answer
51 views

Updating a JComponent in JTabbedPane

I have a JTabbedPane that looks like this: overview= new JTabbedPane(); JComponent accountinfo= AccountOverview(guest.toString()); overview.addTab ("Account Overview", ...
1
vote
0answers
35 views

action handling thru different frames

I have a design problem that seems somewhat basic, but I am struggling to find an adequate solution as I don't have much experience in OO design. I have a system that has got a lot of frames in which ...
0
votes
1answer
43 views

Groovy-Issue: recalling a closure inside of a vbox again, when a spinner's stateChanged fires an action

If you take the numPanels as a fixed value of e.g. 20, it's really a nice and groovy swinging. But I try since two days to add more or less panels with a groovy.swing.Spinner dynamically (my program ...
1
vote
2answers
180 views

Click action to my Icon in JTable

I create class ImageRenderer that which allows me to display in JTable icon png, i would like to add a action when i click on the icon in JTable, ImageRenderer import java.awt.Component; import ...
1
vote
1answer
70 views

What is wrong with this keybinding?

public void buttons(){ int c = WHEN_IN_FOCUSED_WINDOW; Action right = new AbstractAction() { public void actionPerformed(ActionEvent e) { player.setVX(2); ...
3
votes
1answer
104 views

What is better to use: Action vs ActionListener?

Myself, I always use ActionListener as swing event-handler (e.g. button-click), and it is the most common listener I've seen in most swing applications. However, Some Swing professionals here in ...
0
votes
4answers
105 views

Java Swing - Get X,Y From CLick

public class cPan extends JPanel implements ActionListener{ @Override public void actionPerformed(ActionEvent arg0) { } } I have the above code which catches actions from within my ...
1
vote
1answer
61 views

Enabling/Disabling actions from another action

I have a callback action called AddAction. When AddAction is pressed I want it to enable all the components on the TopComponent as well as disable several of the other actions on the toolbar. Then ...
1
vote
1answer
73 views

JButton won't show SHORT_DESCRIPTION, nor does the setEnabled work

JButton won't show SHORT_DESCRIPTION, nor does the setEnabled work. ... ButtonAction action = new ButtonAction(); command.addActionListener(action); class ButtonAction extends AbstractAction{ ...
1
vote
1answer
24 views

Is it possible to set an action to a JComponent without reseting its properties?

I've read the Java trail oracle provides and they said that the objects properties are set to match the actions properties. I would like to know if this is a limited set of properties that is shared, ...
2
votes
3answers
330 views

How to call actionPerformed() within actionPerfomed()

I have a problem with my code below. There are three menu items (Customer, Merchandize and Employee) in the Add Information Menu. Clicking on them (using addActionListener) should show various text ...
1
vote
1answer
102 views

How to avoid redundancy in button text while using custom action

I'm creating a GUI with SWING. Some of the buttons have a custom Action attached. My code looks like: JButton btn = new JButton(text); btn.setAction(new MyAction()); My action class constructor ...
2
votes
2answers
70 views

JList Wiping out previous enteries from a new List

I wrote a program on moving data from one list to another using JList. But when I move the selected data from one list to another, the previous enteries in the list to which I moving data gets ...
4
votes
2answers
79 views

Is there a version of postActionEvent for KeyEvent (specifically for a JTextArea)?

I'm writing a program that contains multiple JTextFields and 2 JTextAreas within an input panel. I have a submit button on the bottom. I have it set up so when a user types something into each field ...
0
votes
0answers
117 views

Setting the actionCommand of a keyboard shortcut

As part of an annotation program, I have an excerpt of code which is responsible for undoing the last point plotted on an image: Action undoListener = new AbstractAction(){ public void ...
1
vote
2answers
625 views

GUI program pictures change with drop down menu action java

I have written a program that calculates miles per gallon entered. it can also switch to km with a drop down menu. I am trying to make it so that when I select the drop down menu that the picture can ...
3
votes
1answer
113 views

Why does action perform 3 times?

I want to have command window with history. I made okAction and tied it to the Ok button. This one is called when a command issued. If command succeeded, the text of the command removed from input ...
1
vote
1answer
59 views

JCheckBox sizing & firing actions

I'm having some issues firing an action from a JCheckBox: JMenu topMenu = new JMenu("Top Menu"); MyAction action1 = new MyAction("Action1"); MyAction action2 = new MyAction("A2"); JCheckBox ...
1
vote
1answer
2k views

How to use Java Swing Actions to create menu items and toolbar items in Netbeans

I am reading a java book and the author creates menu items and toolbar items using the same action. How can I do that using NetBeans? Here is the code : public class ActionInterfaceDemo extends ...
1
vote
1answer
125 views

Error While Creating JToolBar

I get this error while adding buttons to a toolbar Exception in thread "AWT-EventQueue-0" java.lang.ClassCastException: Sketcher.SketcherFrame$ColorAction cannot be cast to javax.swing.Icon ...
1
vote
1answer
164 views

Action listener not working

I am trying to implement an ActionListener for a JComboBoxe so that when an item in the list is selected, and the ok jbutton clicked, I want it to appear in a new gui I have defined with a textfield ...
0
votes
1answer
153 views

Dealing with Swing Actions in several UI JPanels without a reference to the JPanels themselves

My first problem is: "how do I limit the amount of Swing Actions (using the AbstractAction as a base for other actions) when the same actions are used in conjunction with different UI components that ...
2
votes
2answers
2k views

java swing: Focus lost on enter key event

I have a button in my dialog. After pressing enter key in that dilog, actions assigned to that button is getting called one by one. public void buttonAction1() { } .... public void buttonAction2() { ...
0
votes
2answers
90 views

What is the equivalent of button3_Click(sender, e); in Java?

What is the equivalent of calling button3_Click(sender, e); in Java? I am trying to make a text field action (hitting Enter) fire a button's code. Thanks!
0
votes
3answers
625 views

Swing: process JFileChooser result after action?

I want to use an Abstract action for JFileChooser buttons because there will be dozens of these. public class OpenFileAction extends AbstractAction { JFrame frame; JFileChooser chooser; ...
2
votes
1answer
658 views

Binding key combination to JFrame

So far I've got ESC key to close the window, using the following code: KeyStroke escapeKeyStroke = KeyStroke.getKeyStroke(KeyEvent.VK_ESCAPE, 0, false); Action escapeAction = new AbstractAction() ...
1
vote
1answer
839 views

NetBeans Platform: Toolbar and Actions

I have been trying to solve this for the past 2 days with no luck. I went through pages upon pages of solutions that all look correct, but either my implementation is wrong or they aren't they right ...
7
votes
1answer
204 views

AbstractAction as WindowListener

I'm trying to separate function from state in my GUI application by the use of Action objects. I've been successful in using these to create menu items and buttons that have the same functionality. ...
1
vote
1answer
438 views

JButton does not take action's name when preferredSize is non-default

I've just noticed that a JButton does not change it text to the NAME value of the coupled Action object when at least the following 2 things are true: the button's preferredSize property is not the ...
4
votes
2answers
339 views

How to use TextAction

What are the purposes of using TextAction from AbstractAction? and how to use it for the following: Caret Selection in the JTextComponents KeyBindings
1
vote
4answers
253 views

Java swing- Can I change the name on the tab when an event is fired?

First, the code: tab_textArea_file.addTab(docLabel, null, scrollPane_textArea, null); So the situation is that I have a list of files the user can select from. When a user clicks on a file, the ...
2
votes
1answer
97 views

Why button does not reflect Action' NAME property?

I suppose button should has "Close" title in the code below, but it has not: public class Test_Actions extends JDialog { private AbstractAction closeAction = new AbstractAction() { ...
1
vote
3answers
484 views

Java add ActionListener to special button

Is there a way to add/override the action event of THIS button ? I couldn't find anywhere how to acces this button and override it's action. In my case I need to do this because I need to save the ...
1
vote
1answer
325 views

Closing another JFrame from another method

I've been working on this for some time, and I'd really appreciate some help right now. I'm trying to get the JFrame containing the text input fields to close from my actionPerformed method, but I ...
0
votes
2answers
437 views

How to customize keybinding when application is not in focus

My objective is to customize the PrintScreen key`binding. However, I need my application to be out of focus for it to work. I am using inputmap and actionmap to do this. The parameter I am using is ...
3
votes
2answers
268 views

Animate button when corresponding action is executed thru hotkey

I have actions coupled with buttons as well as hotkeys. I want to animate(animation similar to the one exhibited during mouse click) the button when its respective action is triggered thru hotkeys. Is ...
0
votes
0answers
80 views

JGoodies is blocking my action events from firing

I added an actionListener to my JTextField. The JTextField is creating by JGoodies and is buffered. If I change the value in my JTextField and hit enter on it, it fires my event. If I change the ...
1
vote
3answers
343 views

ActionEvent in Java

I recently started learning Java and i came across a statement including (ActionEvent e ). What does e mean and is it a standard? Or can we use anything else in place of e? Because when I change this ...
2
votes
3answers
208 views

Many buttons do similar tasks - is there a way to simplify actionPerformed?

I currently have a set of buttons which when pressed, update an element of an array with their value and then close the frame which contains them. Currently, their actions are set out like this: ... ...
1
vote
3answers
3k views

JMenuitem - click - action - Java

I have written code to perform click event on JMenuItem but that is not firing when I am debugging. (I know that I am not supposed to ask these questions in this forum but I am new to this forum) ...
1
vote
2answers
281 views

Perform action after end of the sound

I am able to play sounds in my Java Swing application right now usind JavaSound and code from Java play WAV sound file. What I currently want to do is: Play a sound; after the sound is finished I ...
0
votes
1answer
459 views

Set keyboard shortcut for a JButton?

I have a type game in which you have to type the words that appear as fast as possible before the time limit runs out, but every time you type a word, you must move the mouse and click enter and click ...
0
votes
1answer
33 views

Cross-refences with Action on Jbutton

Sorry for my english, i'm not good enough. Well, at the moment i have a conception problem because i have a cross reference in my code, and i want to know if i can do something else. I have a frame ...
2
votes
4answers
699 views

Java - JButton text disappears if actionPerformed defined afterwards

This has been bugging me for a while. If I define setText on a JButton before defining setAction, the text disappears: JButton test = new JButton(); test.setText("test"); // Before - disappears! ...

1 2