Answers for "pixelgetcolor ahk"

0

pixelgetcolor ahk

;PixelGetColor, color, 20, 500
;color is the variable of pixelcolor, the x and y axis follow.
;Example:
Layer1:
MouseGetPos, x, y				;The x and y axis are stored in the variable "x" and  "y".
PixelGetColor, color, %x%, %y%	;retrieve the color at the mousepointer
ToolTip, %color%				;shows the color at a tooltip
Goto, Layer1					;goto the first layer so the loop can continue
Posted by: Guest on April-06-2020

Browse Popular Code Answers by Language