hi guys
i am using imagesearch2015 library. (used another one before)
but transparency parameter doesn't working. how i can solve this problem.
here's my code
#include "ImageSearch2015.au3"
#include <Date.au3>
; Script Start - Add your code below here
Global $x = 0
Global $y = 0
HotKeySet("{UP}","hey")
HotKeySet("{DOWN}","heyo")
Func hey()
$balikcisaniye = _Date_Time_GetTickCount()
$array = _ImageSearchArea("bul.bmp", 1, 0, 0, @DesktopWidth, @DesktopHeight, $x, $y, 2,0x000000)
if($array = True) Then
$balikcisaniye1 = _Date_Time_GetTickCount()
MouseMove($x,$y)
MsgBox(1,"","Found." & $x & "-" & $y & " / " & $balikcisaniye1-$balikcisaniye)
Else
MsgBox(1,"","Not Found.")
EndIf
EndFunc
Func heyo()
exit
EndFunc
while 1
WEnd
when i disable transparency parameter, it work normal. but with parameter, this function is always returning false.
please help.
here's library i use :