Go Back   Java Programming Forums > Learning Java > Java Code Snippets and Tutorials

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 29-04-2009, 05:41 PM
Freaky Chris's Avatar
Senile Half-Wit
 
8 Highscores

Join Date: Mar 2009
Location: UK
Posts: 529
Thanks: 2
Thanked 60 Times in 56 Posts
Freaky Chris will become famous soon enoughFreaky Chris will become famous soon enough

I'm feeling Mellow
Default How to get Mouse Position

A common problem is wanting to retrieve the position of the mouse even if it is not within a Component of your application. This can be done using the following code, as an example. It Displays the mouse position every 100 thread tics.

Java Code
import java.awt.MouseInfo;

public class Mouse {
	public static void main(String[] args) throws InterruptedException{
		while(true){
			Thread.sleep(100);
			System.out.println("("+MouseInfo.getPointerInfo().getLocation().x+", "+MouseInfo.getPointerInfo().getLocation().y+")");
		}
	}
}



Reply With Quote Share this thread on Facebook
The Following User Says Thank You to Freaky Chris For This Useful Post:
muralidhar (01-01-2010)
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



Similar Threads
Thread Thread Starter Forum Replies Last Post
System Wide Mouse/Keyboard Hook Freaky Chris Java Native Interface 17 17-06-2009 06:06 PM
How to Control your computers mouse using the Robot Class JavaPF Java Code Snippets and Tutorials 3 11-02-2009 09:17 PM


100 most searched terms
Search Cloud
2 dimensional arraylist java 2d arraylist java actionlistener actionlistener in java actionlistener java actionlistener jbutton addactionlistener addactionlistener java avatar hardware id convert double to integer java double format java double to int java double to integer in java double to integer java eclipse shortcut keys eclipse tutorial for beginners exception in thread "awt-eventqueue-0" java.lang.outofmemoryerror: java heap space exception in thread "main" java.lang.outofmemoryerror: java heap space format double java get mouse position java hardware id avatar java 2 dimensional arraylist java 2d arraylist java actionlistener java addactionlistener java button actionlistener java convert double to int java convert list to map java double format java double to int java double to integer java for beginner eclippse java format double java forum java forums java get mouse position java ipod touch java jbutton java list to map java programming forum java programming forums java sendkeys java.lang.reflect.invocationtargetexception java.util.arraylist jbutton actionlistener jbutton java programming forums string to int java two dimensional arraylist java writing apps for ipod touch

All times are GMT. The time now is 02:12 PM.
Powered by vBulletin® Copyright ©2000-2009, Jelsoft Enterprises Ltd.