"If" condition for mouse in percent of active window from center

Hello

First of all thanks for the great software I bought)

Could you please advice how to enable mouse from center in percent of active windows in "if" condition?

The only available I see is bottom left


Thanks

what exactly do you want to achieve? (given the percentage from the bottom left it should be possible to calculate any condition). Maybe I don't fully understand your usecase.

I'm making some keyboard shortcuts for the book reading app which is designed for iPhone/iPad and doesn't support keyboard

When I'm reading the book, to exit to main menu I have to tap in the center of the screen, menu on top appear and then I need to tap to arrow on the top left corner.

So, I assign ESC key for that. and the algorith is

if mouse cursor is on center (region in center) of app's windows

  1. click
  2. move mouse cursor to the top left corner of the app's windows
  3. click

else

  1. move mouse cursor to the center of the app's windows
  2. click
  3. move mouse cursor to the top left corner of the app's windows
  4. click

Then your condition could look like this:

percent_x_active_win_btm_left >= 30 AND percent_x_active_win_btm_left <= 60

Great idea! Thank you!