Recent content by Pseudocyclic

  1. P

    Running Macrodroid on Fire TV Cube

    Can you connect a Bluetooth mouse?
  2. P

    Simulation of pressing the power button

    Does the screen turn off if you go to the device home screen (the screen that appears when the device is booted) and tap twice in quick succession on an empty part of the screen?
  3. P

    Accessibility setting shows "not working" in Motorola phone

    Next time there is a MacroDroid update, first check status, then accept the MacroDroid update, then when the update has completed, check again. If status has changed from ON to Not Working, try rebooting the device.
  4. P

    Simulation of pressing the power button

    Try other settings? 2 seconds, 5 seconds... Are you turning the screen off to preserve the battery? Or to prevent unwanted UI interactions? Or...?
  5. P

    Simulation of pressing the power button

    Try setting Screen Timeout to one second, then immediately after the screen has gone off, reset Screen Timeout to your normal preferred value.
  6. P

    Media volume change doesn't work

    Does it work if Application Launched is MacroDroid?
  7. P

    [Bug] Incoming Call trigger

    "I found the sample template for this online and it looked good" - please provide a link.
  8. P

    Macrodroid issue

    Is the first action triggering the second action?
  9. P

    Using Google assistant to trigger a macro?

    This works for me: http://www.macrodroidforum.com/index.php?threads/macrodroid-and-google-home-assistant.6734/
  10. P

    Text Manipulation

    The above should extract "Mr John Smith ". There are a number of simple ways it can be tweaked to remove the unwanted space at the end.
  11. P

    Text Manipulation

    Use Regex. However, if you would like to try a DIY solution without any Regex research/learning... - set test string variable to "" - set integer variable to -1 - repeat while test string variable is not • - increase integer variable value by 1 - copy source string character at integer variable...
  12. P

    How do I make a macro run if I press 2 different buttons.

    Or this (not as precise, but might be sufficient in practice): T1 = button1 T2 = button2 A = if trigger fired = T1 A = wait until trigger fired = button2 (cancel after 1s timeout) A = else A = wait until trigger fired = button1 (cancel after 1s timeout) A = end if A = pause media player
  13. P

    How do I make a macro run if I press 2 different buttons.

    Try this: T1 = button1 T2 = button2 A = if trigger fired = T1 A = set Iinteger to Iinteger +1 A = else A = set Iinteger to Iinteger -1 A = end if A = wait 100ms A = if Iinteger = 0 A = pause media player A = else A = set Iinteger to 0 A = end if A = cancel macro actions
Top