Screen location based trigger

Hi @emphelp

One way to go could be to use Timer Trigger with Conditional Triggers based on coordinates.

If I put it in words, it will be something like:

  • IF 1 sec has elapsed (Repeat indefinitely)
    • AND Circle X coordinate > value1
    • AND Circle X coordinate < value2
    • AND Circle Y coordinate > value3
    • AND Circle Y coordinate < value4
  • THEN Simulate a tap on Button

By doing this, every second (or less/more, you pick the time), coordinates X and Y of your circle will be evaluated, and if they meet the conditions (values 1 to 4 being describing the surface limits of button), then button will be pressed.

In your Composer, it will look like this:

If you check the video in this OpenVINO thread, that’s the method we use, starting at 00:17"

Regards,

Alex.