Hello, i tryed to work with imagesearch, therfore i did take the example of the help forum. ANd i did try to adapt for me.
my problem now is, that i am to silly to end the while command. i want the programm to end the while for the funktion "KZ" and go on with the function "test".
Can some1 please help me?
;~ Opt("MustDeclareVars", 1)
;~ #AutoIt3Wrapper_UseX64=y
;~ #AutoIt3Wrapper_Change2CUI=y
;~ #RequireAdmin
#include "_ImageSearch_UDF.au3"
HotKeySet("{Esc}", "_Exit") ; Press ESC for exit
Func _Exit()
Exit 0
EndFunc ;==>_Exit
Global Const $Mouse_Click_On_Found = 1
Global Const $iSleep_Time=500
$_Image_1 = @ScriptDir & "\kz.png"
$_Image_2 = @ScriptDir & "\kz1.png"
$_Image_3 = @ScriptDir & "\kz_ns.png"
ConsoleWrite("! Search for images: " & $_Image_1 & @CRLF & '! Searching on the screen ...' & @CRLF)
call ("_Kz")
func _Kz()
While 1
ToolTip('(Press ESC for EXIT) Searching ...', 1, 1)
Sleep($iSleep_Time)
Local $return = _ImageSearch($_Image_1)
If $return[0] = 1 Then
If $Mouse_Click_On_Found Then MouseClick("left", $return[1], $return[2])
EndIf
Sleep(200)
Local $return2 = _ImageSearch($_Image_2)
If $return2[0] = 1 Then
If $Mouse_Click_On_Found Then MouseClick("left", $return2[1], $return2[2])
EndIf
Sleep(200)
Local $return3 = _ImageSearch($_Image_3)
If $return3[0] = 1 Then
If $Mouse_Click_On_Found Then MouseClick("left", $return3[1], $return3[2])
EndIf
Sleep(200)
WEnd
EndFunc
call ("_test")
Func _test()
MsgBox($MB_SYSTEMMODAL, "", "Hello")
EndFunc ;==>Test1