Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've got an old python program that I'm trying to port to java for practice. Basically, it records mouse movements/clicks as I go about my general computing, and then draws the activity onto a kind of heat map.

I'm currently using the PyHooks library with Python to grab the mouse events. Is there anything similar in Java? How does one go about checking for mouse clicks without it being bound to a specific GUI component?

Note that this doesn't need to be cross platform. I'm only looking for a Windows solution.

share|improve this question
1  
@moonwave99 That only seems to deal with getting the pointer position (which is helpful!), bit do you know of a way to get information on whether the user has clicked the mouse or not? – Zack Sep 2 '12 at 0:44
   
Try this one then - good luck! – moonwave99 Sep 2 '12 at 0:51
@moonwave99 Perfect! Thanks a bunch! – Zack Sep 2 '12 at 1:05

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.