Any way to tell the macro to limit area of interest for image recognition to x,y pixels relative to curent mouse position? (like in the photo atached)
And ofcourse when done to unlimit it.
Ps: I know atachment is retarded but it's just to ilustrate what i need it to do
scan "Func4.bmp" 0 0 1 65
RECT r
GetCursorPos +&r
r.right=r.left+200 ;;width 32
r.bottom=r.top+200 ;;height 32
if(scan("Func5.bmp" 0 r))
out "true"
else
out "false"
Is there a way to move the cursor to the found Func5.bmp inside the area automaticaly? I tried seting 0 to 1 and adding 0 0 1 r but won't work like that.
Thank's