just a simple tool
features:
1. finds x and y coordinates of the position of the mouse.
2. finds the color of the position of the x and y in binary format
3. color in hex format
PRESS F5 TO GET THE COORDS AND COLORS
if u want me to add an option i will gladly do it (i find it a challenge)
Made with autoit and will have false positive results
THIS TOOL IS NOT LIMITED TO CONQUER ONLY
features:
1. finds x and y coordinates of the position of the mouse.
2. finds the color of the position of the x and y in binary format
3. color in hex format
PRESS F5 TO GET THE COORDS AND COLORS
if u want me to add an option i will gladly do it (i find it a challenge)
Made with autoit and will have false positive results
THIS TOOL IS NOT LIMITED TO CONQUER ONLY
Quote:
Source Code
GuiCreate("Finder++", 170, 110,-1, -1 , BitOR($WS_OVERLAPPEDWINDOW, $WS_CLIPSIBLINGS))
$Label_1 = GuiCtrlCreateLabel("X:", 10, 10, 10, 15)
$Label_1 = GuiCtrlCreateLabel("Color (binary)", 10, 30, 100, 15)
$Label_1 = GuiCtrlCreateLabel("Color (hex)", 10, 50, 100, 15)
$Label_1 = GuiCtrlCreateLabel("F5 to refresh", 50, 75, 100, 15)
$Label_1 = GuiCtrlCreateLabel("<esc> to exit", 50, 90, 100, 15)
$Label_4 = GuiCtrlCreateLabel("Y:", 90, 10, 10, 15)
HotKeySet("{ESC}", "Terminate")
HotKeySet("{F5}", "getmouse")
Func getmouse()
$pos = MouseGetPos()
$Label_2 = GuiCtrlCreateLabel($pos[0], 30, 10, 50, 15)
$Label_3 = GuiCtrlCreateLabel($pos[1], 110, 10, 50, 15)
$var = PixelGetColor( $pos[0] , $pos[1] )
$Label_4 = GuiCtrlCreateLabel($var, 100, 30, 50, 15)
$var2 = Hex($var, 6)
$Label_5 = GuiCtrlCreateLabel($var2, 100, 50, 50, 15)
sleep(50)
EndFunc
Func Terminate()
Exit 0
EndFunc