A Listener Object that reacts to events triggered from a Mouse input device

learn more… | top users | synonyms

0
votes
0answers
52 views

Make projectiles fire a certain direction

How to make projectiles fire a certain direction? I'm making a small game for my Java class in which you play a small red square with a face and basically have to shoot oncoming shapes from the ...
0
votes
1answer
10 views

How to use the repaint method

I am trying to use the repaint method in the following code to update the screen after user input. The game is a card game where the user has to click on two cards to reveal their pictures. If the ...
0
votes
2answers
55 views

Game Of Life Java MouseAdapter doesn't always work

Sometimes the mousePressed event gets executed , but at other times it won't. It also seems to depend on the time you press it. How do I get it to ALWAYS work? I'm not sure which part of the code is ...
0
votes
1answer
20 views

Changing color when double clicked in the getListCellRendererComponent

How can I change color when I double click the cell of JList? Is there a way adding a MouseListener within DefaultListCellRenderer? public class Renderer extends DefaultListCellRenderer{ @Override ...
0
votes
1answer
59 views

Keeping a MouseListener always running

I have this constructor: public Board(final boolean[][] board) { this.board = board; height = board.length; width = board[0].length; setBackground(Color.black); button1 = new ...
-1
votes
1answer
48 views

double click on jlist in netbeans

I want select item in list by mouse. I found this code but it didn't work. MouseListener mouseListener = new MouseAdapter() { public void mouseClicked(MouseEvent e) { if ...
1
vote
0answers
31 views

How to dynamically extend PickCanvas object for MouseListener click event in a Java Applet (using Java3D)?

I am developing a Java applet using Java3D. It starts up with a BranchGroup object (containing a set of points) which is added to a Locale object. A PickCanvas is created starting from the Locale and ...
0
votes
2answers
29 views

Check if a MouseListener is added

In a game that I'm making I have different power ups, some that last for a certain amount of time and some that last until you've used it up. I have a MouseListener that handels the shooting and I ...
0
votes
1answer
29 views

Swing: MouseListener only on ImageIcon not JLabel

I have a Java Swing application with a JFrame containing a JLabel containing an ImageIcon. I want to monitor the mouse entering/exiting the ImageIcon. For now I use the addMouseListener method of ...
1
vote
1answer
32 views

at java.awt.AWTEventMulticaster.mouseExited(Unknown Source) occur after using the GUI for several times

Good Morning, i'm implementing the GUI for a game and when i play the game for sometime i get an endless number of this exception then the game freezes, any help on what is the problem or how to fix ...
0
votes
0answers
26 views

JPanel not drawing after mouseclick

I have a very weird problem. Right after starting my java application i run the function "runprogram", what asks the user for a value with a dialog and handles that return of the user, and let an ...
0
votes
3answers
44 views

addMouseListener for a JPanel

Today I have a problem.. My program make a 8x8 grid and show the coord when I click on a JButton. BUT I refuse to use JButton and I need to go for JPanel.. But my addMouseListener isn't working so I ...
3
votes
1answer
28 views

Changing MouseAdapter while mouse is being pressed

In a game that I am making I have two different mousePressed() methods, one for single fireing and one for auto fireing, If you get a automatic weapon it will change the mousePressed() methid from the ...
1
vote
2answers
44 views

Java MouseClick Listener not working

So I'm working on a deal or no deal java game essentially, and right now I'm trying to have the image icon disappear where the user clicked. So I have an 6 by 6 array of 'metal briefcase' (casesArray) ...
0
votes
1answer
72 views

Properly implementing a delay in a game

This is a follow up to a previous question I had. I have a Battleships game with two boards. When the user clicks on the computer board an action occurs, along these lines: public void ...
0
votes
2answers
28 views

modifying addMouseListener()

This is my button Code onclick i want my program to wait for the user to click one JPanel and as the user clicks the JPanel it should print its name on console. This button code is not showing ...
0
votes
2answers
35 views

Is it possible to make different mouseClicked() for the same class?

My java program already have a Canvas, I plan to add 4 Components with MouseListener to that Canvas to act as 4 Buttons. Of course 4 "buttons" will respond differently Can i create only ONE class for ...
0
votes
2answers
54 views

How to add MouseListener to JList model

I have simple sample of code. How can I to add Mouse Listener for displaying simple menu(when i clicked on right mouse button) for selected JList item? In addition: how can I to add Mouse Listener for ...
0
votes
2answers
49 views

onclick i want to get the name of the JPanel that is present on the JFrame

Below is what im trying to implement but its giving error on the line mentioned ; this is because the function doesnot get which Component.getName() is of ... String name=new String(); ...
0
votes
1answer
34 views

To keep track of the panel that has been clicked by the mouse

This is my object code:: package build; import java.io.BufferedReader; import java.io.BufferedWriter; import java.io.File; import java.io.FileReader; import java.io.FileWriter; import ...
-3
votes
1answer
28 views

in the mouse click method when i call the method get X() and get Y() it return -8 regardless the position [closed]

public void mouseClicked(MouseEvent e) { System.out.println("mouse click working"); System.out.println(getX()); System.out.println(getY()); }
0
votes
0answers
26 views

How to make a double FOR to return an object stored in a two-dimensional array

i seem to have a problem returning an object and specifically a jlabel from a two-dimensional array. I already did it with a linked list and it works though when i add the code for the two dimensional ...
0
votes
1answer
29 views

MousExited doesn't get fired on JDialog with GlassPane, MouseEntered does

I have made an own Window-Model, which extend JFrame and JDialog, without Window-Decoration. If I make a new window, its a instanciation of the respective model. To handle resizing of these windows, I ...
0
votes
1answer
69 views

Issue implementing MVC in board game - MouseListener now only works for whole grid, not individual cells

I am trying to implement a game using MVC design. However, I'm running into a few problems. Rather than ask for a plethora of help on MVC (which I'm rather enjoying experimenting with, even though ...
0
votes
0answers
29 views

Applying something to a sprite if a boolean equals to true

In the game that I'm creating at the moment I have an power up that makes it so that the player shoots alot faster. The problem is that I can't seem to make it apply when I kill a zombie(I have made ...
0
votes
2answers
81 views

add mouseListener to an array of JPanels

i have an 2D array with JPanels and i want to add a mouseListener in every JPanel in the array so i use 2 for loops to add them ,but i want to pass the variables i used in for loops in every ...
0
votes
1answer
36 views

Repainting not updating?

As of now, I am trying to work to create a JAVA version of uno that my teacher calls "Singles". Currently, I'm simply trying to get a working deck in which I can remove cards. My issue currently, ...
0
votes
1answer
21 views

MouseListener being unresponsive

The MouseListener for my game that handles the shooting is being unresponsive when using an seperate mouse but not when using the built in mouse on my laptop. In my player class the mouseClicked ...
2
votes
2answers
62 views

Using MouseListener to select a range of cells in a grid

Linked post: How to use MouseListener to find a specific cell in a grid I am trying to create a Battleships game, with a 10x10 grid made up of 100 cells. The Grid extends JPanel and the Cell also ...
5
votes
3answers
87 views

How to use MouseListener to find a specific cell in a grid

I'm trying to create a Java game with a 10 x 10 grid made up of cells. The Grid looks liks this: public class Grid extends JPanel implements MouseListener { public static final int GRID_SIZE = ...
0
votes
1answer
63 views

How to combine paintComponent(Graphics g) with MouseListener and MouseMotionListener

So, I'm trying to combine the use of paintComponent() as well as the use of MouseListener and MouseActionListener, but i get a lot of errors when I run it, and it does not work liek i want it. In this ...
1
vote
1answer
61 views

How does one prevent a JList from selecting elements when dragging beyond the end of its list?

A very similar question has been asked here, and while I acknowledge it, the question's solution doesn't quite solve my question. A JList, when clicked on, will select the index list item closest to ...
0
votes
1answer
49 views

I have a Boolean variable to temporarily disable my mouse listener but it remembers wher i clicked

I am using a Boolean canclick mouse variable to temporarily disable my mouse listener, but it seems like when i re-enable the mouse listener it remembers where i click: class MouseHelper extends ...
0
votes
1answer
111 views

How to open new JFrame using mouseListener

I'm trying to add a listener to my program that when a panel is clicked it will open a new JFrame. For instance jpanel4 is the panel labled messages. When I click on jpanel4 I would like it to open ...
0
votes
1answer
40 views

How do I change a panel with mouselistener?

I'm wanting the panel to expand and display buttons and stuff when the mouse is hovered over, then apon mouse exiting the panel must return top original size. So far I can only print a message: ...
0
votes
2answers
32 views

addMouseListener to the canvas in Rubber Banding

I'm trying to solve Rubber Banding problem of Stanford CS106A. As per Java Doc on addMouseListener() one needs a listener to use it. As per the solution to this problem no listener is used but when I ...
0
votes
1answer
68 views

How to add an “input value” listener to a JTable?

I have a JTable. Currently I have the following code: table.addMouseListener(new MouseAdapter() { public void mouseClicked(MouseEvent e) { if (e.getClickCount() == 1) { JTable ...
1
vote
1answer
54 views

Java - Obtain Intensity Value of Particular Pixel Through MouseListener

Could someone tell me the class I would need to use in order to obtain the pixel intensity of one specific pixel (a pixel the user clicks) in an image, say, in some JPanel? This will be a grayscale ...
7
votes
2answers
79 views

java swing hold both mouse buttons

I want to implement a method where the user needs to hold the left and right mouse buttons at the same time. I'm using Swing and Java 1.7. I've tried this, but it doesn't detect the both-buttons ...
0
votes
0answers
42 views

Using MousePressed and changing an Icon

I have created a program for homework and for some reason I am getting stumped on what to put in the MousePressed action and how to update that. The program right now will run fine and if you change a ...
3
votes
1answer
83 views

I'm trying to print out the data from a JTable to the command line using a MouseMotionListener

I'm fairly new to java, especially this side of java. I am currently trying to create a JTable which will take in a CSV file of data, the table will then be displayed onto a GUI which you can select ...
0
votes
1answer
57 views

Java ImageIcons and actioin listeners

I am creating a simple game where a person clicks on an image the score increases by one. It seems simple enough, right? Here's the catch-- the images will be hidden partially behind other images! ...
1
vote
1answer
71 views

Reveal all spaces in a game of Minesweeper

I made a game of minesweeper with jbuttons and I have no clue how to access all of the buttons again to reveal the final game after you lose. I set the text by using the setText method with jbuttons ...
0
votes
1answer
97 views

Java MouseListener not always working

I find it odd that in my project, the mouselistener is not always heard. Has anyone else come across this? Or am I doing something wrong? I have to sometimes click it several times before it opens. I ...
1
vote
1answer
48 views

Slow reaction(repainting) of mouseListener

I made a Frame which repaints itself when I click on it(also the new geometric figure is painted) but when I click rapidly It does not responds so fast, it needs like half a sec beetween clicks. What ...
1
vote
2answers
71 views

Why Listeners are interdependent on one another in Java?

I have written MineSweeper game. In that I have two Listeners for a button as, class SampleClass extends MouseAdapter implements ActionListener { //Some code here public void ...
0
votes
0answers
29 views

Deviation location on drawline according to mouseClicked Point

Having a JPanel on a JFrame , the JPanel is as the follow - public class MyPanel extends JPanel implements MouseListener, MouseMotionListener { ... @Override public void ...
0
votes
1answer
103 views

JFrame - mouse click using JComponent and MouseListener

Having 2 classes - public class MainClass { public static void main(String[] args) { JFrame frame = new JFrame(); .... Component mouseClick = new MyComponent() ; ...
4
votes
2answers
81 views

JInternalFrames to listen to JDesktopPane events

Is there any easy way to have my jinternalframes be the best of both worlds embedded when I want them to act as part of jdesktoppane also movable and able to handle their own events Hopefully ...
2
votes
2answers
149 views

JTable Mouse Listener Not Working Properly

My JTable (jtblLot) Mouse Click Event not Fires some Times. Mainly on frequent Clicks Below is the code for Mouse Click Event private void jtblLot_MouseClicked(java.awt.event.MouseEvent evt) { ...

1 2 3 4 5 6