Forum Discussion

BenoitB's avatar
BenoitB
Community Hero
5 years ago
Solved

Size and Pos of Indicator

Hello,   I made a method for low-level click that works quite well unless under the Indicator. I don't want to hide Indicator all time,  just hide it before clicking if click coordinates are under...
  • BenoitB's avatar
    BenoitB
    5 years ago

    Indicator is very useful.

    But as we cannot change it position it can be problematic (top right level is mainly the place for profile access in lot of webapps for example).

    Don't want to hide it everytime i call the click routine because it can make you blink a lot depending on your clicks.

    So i'll add it in the features wanted list and i keep simple coordinates test until it would be done

     

      if ((Yr < 350) && (Xr > (Sys.Desktop.Width - 400)))
        Indicator.Hide();

    Txs for confirming me there is no way to have object info on it.