|
$var = "das was du willst"
MsgBox (0,"",$var)
HotKeySet ("{F6}","ende")
HotKeySet ("{f5}","start")
while 1
sleep (500)
wend
Func ende ()
exit
EndFunc
Func start ()
$pixelfarbe = PixelGetColor (x-coord,y-coord)
If $pixelfarbe = 0xFFFFFF then
MsgBox (0,"","Pixel ist weiß")
Endif
Endfunc
|