Sorry was on holiday.
What is the issue with the snippet?
This is the whole script where i tested the image search:
#include <Array.au3>
#include <File.au3>
#include <MsgBoxConstants.au3>
#include <ImageSearch2023.au3>
global $y = 0, $x = 0
For $i = 1 to 3000
checkForImage()
sleep(1200)
next
Func checkForImage()
Local $search = _ImageSearch('images\previewbutton4.bmp', 1, $x, $y, 80)
If $search = 1 Then
MouseMove($x+20, $y+40, 2)
EndIf
EndFunc
while 1
sleep(200)
WEnd
Issue is still there. In the application the button is not recognized.
Any ide how to solve this would be highly appreciated.