a keyboard scanner that scans for certain key combinations, then performs methods based on the key combination.
a mouse scanner that will do specific methods...
for instance... If i left click twice, i'd like it to tell the computer i left clicked 3 times.
Also, get the position of the x,y coordinates of the mouse pointer.... and then save it as variables so that i can return to this specific location....
I've read on java.sun.com and searched... can't find anything to easily do what I want
Thanks.
Skylance
12-02-2005, 09:48 AM
Hmmm. Sounds like fun.
Before I can help you, I need you to answer a question:
Have you ever messed with "Action Events" and "Action Listeners". Thats how you would be handling this.
Here is some good reading for you:
http://java.sun.com/docs/books/tutorial/uiswing/events/intro.html
http://java.sun.com/docs/books/tutorial/uiswing/events/actionlistener.html
http://java.sun.com/docs/books/tutorial/uiswing/misc/action.html
That should get you started if you've never messed with this stuff before.
thanks for this + the email too.