The Computer Oracle

Utilities for finding x/y screen coordinates

--------------------------------------------------
Hire the world's top talent on demand or became one of them at Toptal: https://topt.al/25cXVn
and get $2,000 discount on your first invoice
--------------------------------------------------

Music by Eric Matyas
https://www.soundimage.org
Track title: Future Grid Looping

--

Chapters
00:00 Utilities For Finding X/Y Screen Coordinates
00:58 Answer 1 Score 5
01:22 Answer 2 Score 7
01:59 Answer 3 Score 3
02:19 Answer 4 Score 3
02:44 Thank you

--

Full question
https://superuser.com/questions/85822/ut...

--

Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...

--

Tags
#softwarerec #display

#avk47



ANSWER 1

Score 7


Warning : This is an old post. This product is no longer available.

For Windows you can use Point Position :

The way to use the application is very simple:

  • Move the window by putting your mouse cursor in the cross which is in the middle of it, and point one of the four corner arrows into the place of the screen you want to define.
  • Then push the button corresponding to the pointing arrow.
  • The text entries will take the color of the button, and they will show you the exact pointing position.

image




ANSWER 2

Score 5


Point Position (for Windows) is a simple tool that lets you pick the coordinates for any point on your screen (using X,Y axis). Simply point one of the four corner arrows at the spot on your screen that you want to define and click the button to display the X/Y coordinates.

Point Position is freeware.




ANSWER 3

Score 3


For Macintosh, use the built-in screen capture function. Press Command-Shift-4 to take a picture of part of the screen. The cursor switches to a crosshairs cursor that includes the x/y screen coordinates. Press ESC to cancel the operation




ANSWER 4

Score 3


I was led to this page through a query of my own. I had a further search around and found xev (on Linux and Mac OS X.)

Here's the Mac OS X documentation: http://developer.apple.com/Mac/library/documentation/Darwin/Reference/ManPages/man1/xev.1.html

The Bash commands

$ root=`xwininfo -root | grep xwininfo | sed 's/.*0x/0x/; s/ .*//'`

$ xev -id $root

provided me with the information required. :)