[R] Si il voit sa alors
Posté : ven. 25 janv. 2008 13:05
Bonjour,j'aimerai savoir si il existe une fonction permettant de faire : Si il voit cette couleur alors il ouvre un msgbox?
Merci d'avance
Merci d'avance
Communauté Francophone AutoIt
https://www.autoitscript.fr/forum/
Code : Tout sélectionner
PixelSearch(0,0, @DesktopHeight, @DesktopWidth, 0xFFFFFF)
If @error = 1 Then
MsgBox(0,"","impossible de trouver la couleur")
Else
MsgBox(0,"","ton message")
EndIf
Code : Tout sélectionner
$recherche = PixelGetColor ( 500 , 435 )
If $recherche = 0xFFFFFF Then
MsgBox(0,"","ton message")
EndIf