HotKeySet("^{SPACE}", "get_color")
$colorCodeHere = ;<----------------
func get_color()
Global $point = MouseGetPos()
Global $color = PixelGetColor($point[0], $point[1])
MsgBox(0, "debug", "result: " & $color)
EndFunc
While 1
Sleep(100)
WEnd
Hello guys my problem is, how can i stor...