Color of a screen pixel: Difference between revisions

(originated with autohotkey)
Line 3:
=={{header|AutoHotkey}}==
<lang AutoHotkey>
loop, 200
{
MouseGetPos, MouseX, MouseY
PixelGetColor, color, %MouseX%, %MouseY%
TrayTip, color, color at the current cursor is %color%.
sleep, 500
}
</lang>
 
Anonymous user