How can I determine exact screen location of mouse pointer after mouse event in an applet?
Created May 4, 2012
John Zukowski The MouseEvent has a getPoint() method to tell you where the event happened relative to the event source's origin. What you need to do is add that to the Point returned by calling getLocationOnScreen() on the event source (possibly the applet).