Was wondering if I could get a bit of what return / return false / return true does
I have function in my script where it basically looks like this:
Func A
PixelSearch
If pixel found, click XXX,YYY
EndIf
EndFunc
Now, if the Pixel is found I want it to start the script over basically... But I think it returns to where the function is called?
If the pixel is not found, I want it to start at Function A again
Would that look like this?
Func A
PixelSearch
If pixel found, click XXX,YYY
Return
Else
A()
EndIf
EndFunc