We are about to switch to a new forum software. Until then we have removed the registration on this forum.
Is it possible to get the mouse coordinates stored in some variable for example X,Y ? The coordinates of the entire window and not alone the java frame. Can someone please help..?
Answers
but this is the java window
maybe robot class can get the absolute coors?
That method does not acquire the coordinates for the whole window. I am unable to find a proper method under the robot class... Thanks in advance.
Can i use Point p = MouseInfo.getPointerInfo().getLocation(); to get the coordinates. if yes how?
can't you add the java frame pos to the mouse pos?
pseudo-Code :
PVector p = MouseInfo.getPointerInfo().getLocation();
Also how to define a click event to occur when something triggers..?