Sorry if this isn't the right website for this, but I've been learning Java lately and I have started to look at MouseEvents. I have got it working with the Data being output in the Console, but I have no idea how to use this Data. This is the data being output:
java.awt.event.MouseEvent[MOUSE_RELEASED,(4,26),absolute(4,26),button=1,modifiers=Button1,clickCount=1] on frame0
I need to access the "(4,26)" in the data, but I don't know how to go about this. The format of the data is MouseEvent.
Thanks, and again, sorry if this is the wrong website.
EDIT: This is the code used:
public static void main(String[] args) {
JFrame jf = new JFrame();
jf.add(new main());
jf.addMouseListener(new MouseListener() {
@Override
public void mouseReleased(MouseEvent e) {
System.out.println(e);
}
@Override
public void mousePressed(MouseEvent e) {
// Mouse Pressed
}
@Override
public void mouseExited(MouseEvent e) {
// Mouse Exit
}
@Override
public void mouseEntered(MouseEvent e) {
// Mouse Enter
}
@Override
public void mouseClicked(MouseEvent e) {
// General Click
}
});
jf.setSize(Settings.map_width, Settings.map_height);
jf.setTitle(Settings.frame_name);
jf.setResizable(Settings.frame_resize);
jf.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
jf.setVisible(true);
}
