New click result function for UI interaction

I'm wondering how this works. Not sure what it means by "block until result available" and how it saves to boolean if it's just an x,y location click unless this is more for text content? I'm just confused since I dunno where to look for the documentation and I wanna make sure I'm getting the most out of this macro I'm currently making.
 
Last edited:

JA-Translator

Moderator
Not sure what it means by "block until result available"

That means:
Stop the current Macro and
Wait for the result (true or false).
True: Found the match
False: Didn't match

Once the process gets the result, the Macro can go run the next Action.


how it saves to boolean if it's just an x,y location click unless this is more for text content?

I am not sure but I guess:

Ture: Successfully clicked
False: Failed to click for some reasons

So, I think XY Location Click can get always True?

Does it make sense?
 

Endercraft

Moderator (& bug finder :D)
I wonder why MacroDroid doesn't have an alternative mechanism that can click on anything. There are plenty of apps out there that can...
 
That means:
Stop the current Macro and
Wait for the result (true or false).
True: Found the match
False: Didn't match

Once the process gets the result, the Macro can go run the next Action.




I am not sure but I guess:

Ture: Successfully clicked
False: Failed to click for some reasons

So, I think XY Location Click can get always True?

Does it make sense?
Ah I see thx
 
Top