Notice: You have been identified as a bot, so no internal UID will be assigned to you. If you are a real person messing with your useragent, you should change it back to something normal.
Catherine !TGirlYJKXM started this discussion 11 years ago#45,624
Apple has this program on Mac called Snapshot, which is basically just a screen capture tool, but what is great about this is that it shows the screen coordinates on it's cursor.
Does such a program exist for Windows that allows you to see the screen coordinates? Google brought up nothing for me.
FuckAlms !vX8K53rFBI joined in and replied with this 11 years ago, 2 hours later, 11 hours after the original post[^][v]#602,229
moneyshot
DasSheeple joined in and replied with this 11 years ago, 6 minutes later, 11 hours after the original post[^][v]#602,231
Snipping tool? No idea if it can be made to show coordinates...
FuckAlms !vX8K53rFBI replied with this 11 years ago, 4 hours later, 15 hours after the original post[^][v]#602,273
There's this free photo editor sort of like photoshop that's pretty good. It's called The GIMP. I recommend version 2.6.x
Methlyfe !KansasxqvM replied with this 11 years ago, 39 minutes later, 16 hours after the original post[^][v]#602,281
script into Notepad:
dim addx as unsigned
dim addy as unsigned
addx=allocate(8)
addy=addx+4
repeat
a=External("user32.dll","GetCursorPos",addx)
if a <>0 then
pos_x=PeekInteger(addx,4)
pos_y=PeekInteger(addy,4)
mes$="Cursor X is at : "+str$(pos_x)+"\n\Cursor Y is at : "+str$(pos_y)
msgframe(mes$,1)
pause 1
endif
until i=500
The 500 value is length of time to display, adjust as needed. Save file as whatever.js and double click to run. Have not tested, but I used this or something similar in some version of Windows at some point.
Anonymous K joined in and replied with this 11 years ago, 1 hour later, 18 hours after the original post[^][v]#602,291