Jump to content

zist1982

Members
  • Posts

    3
  • Joined

  • Last visited

Everything posted by zist1982

  1. Hello, i have one issue, where maybe someone knows how i can solve it. The program with imagsearch does work totaly well on one notebook, if i try to run it on another notebook, it does not find the pictures. I did the same grafic resolution on both notebooks, and i did also have an eye on that scaling is the same amount. if i do new screenshots on the 2nd notebook it does also work. But i dont wanna do the hole work with the pictures on every client. My tolerance at imagesearch is 100. Some1 any thoughts? BR
  2. Yeah thanks, it was the while loop, did change it, and now it is working. can be closed! thanks
  3. 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
×
×
  • Create New...