Search results

  1. A

    Day/Time Trigger to start macro, then 1 minute regular interval thereafter...

    Am I missing something: why do you have a Day Of The Week constraint with every day specified? Isn't that redundant?
  2. A

    Switch on animations temporarily for Animation Overlay action?

    Thanks, I tried it (in an Action Block) as below, but it didn't work- I believe changes to System Settings may not take effect immediately?
  3. A

    Switch on animations temporarily for Animation Overlay action?

    I like the new Animation Overlay action but, for it to work, animations need to be enabled on the phone. Is there a way to switch animations on temporarily to run the action, then turn them off again after?
  4. A

    Please add "Real Time Updating Status" icon.

    As long as you can fit your data into four characters, you can use the Display Notification action, and specify Text rather than Icon. So, for example, to display the current temperature 'permanently' on the Status Bar, specify Any Weather Update as the trigger; and set a Display Notification...
  5. A

    Option for Text Manipulation/Replace All action to be case insensitive

    Thanks, that works well. For those who, like me, aren't regex experts: assuming the text to replace is stored in the local variable sSearchWord, the syntax is (?i:{lv=sSearchWord}) A "case-insensitive" tickbox would still be simpler though!...
  6. A

    Option for Text Manipulation/Replace All action to be case insensitive

    Please can we have a Case Insensitive option in the Text Manipulation/Replace All action; currently I need to manually change the case of the search text and repeat the Text Manipulation several times. Thank you :)
  7. A

    S22 Ultra Prox Sensor Does Not Trigger

    It might be that the Proxmity Sensor only works when a call is active: https://www.macrodroidforum.com/index.php?threads/samsung-s21fe-proximity-sensor-always-returns-far.2353/#post-15239
  8. A

    Macrodroid restarts after every Send Email action

    Ever since I received MacroDroid v5.36.8 Pro, every time the Send Email action is used, the email sends correctly, but MacroDroid then stops and reinitialises. Is anyone else having the same issue? Samsung S21FE on Android 12
  9. A

    Send sms after missed call

    Oh I just saw Endercraft gave a similar solution in your post in another thread
  10. A

    Send sms after missed call

    In your macro define a local string variable eg sList which is initially empty When a missed call comes in, check if sList contains the number; if it does, quit the macro; if it doesn't, send the SMS and append the number to the list, followed by some sort of delimiter eg '!!' eg...
  11. A

    Notification variables aren't working in Display Notification or Send SMS since last update

    Guess what? The problem came back for me too today- I suspect this is a MacroDroid bug, but I'll test it again tomorrow...
  12. A

    Notification variables aren't working in Display Notification or Send SMS since last update

    This was happening to me too; in the course of trying to figure out why, I created a new test macro with Notification Received as the Trigger. It seemed to work, so I was still puzzled. Then I went back to the original macro, and that suddenly started working again too. I've no idea why, but...
  13. A

    Sms received issues

    Using Google Messages, the Notification Title ie {not_title} should be the sender; if the sender is in your contacts you'll get the name rather than the number though
  14. A

    "Application Closed" trigger does not work as expectet

    The logic in the macro isn't right: the second IF statement will never be true because you only have one trigger (Application Launched)- you probably want a second trigger, Application Closed...
  15. A

    Open multiple links using a specific browser

    If you just want to open a Website in the default browser, you don't need to use an Intent, there's an Open Website action...
  16. A

    Variables doesn't work in define manually dialog

    Do any arithmetic on the required index *before* trying to use it eg the following will display the last element of the array: Set Variable: n: (size=array_variable) - 1 Popup Message {lv=array_variable[{lv=n}]} Is that what you mean?
  17. A

    User log, how to make a carriage return in 'Log Event' ?

    At its simplest you can create an Action Block something like this (if you only have one log file, you don't need the sLogFilename Input Variable): where the Write To File Action is something like this (you need to give Macrodroid Write permission to the folder): Then, when you want to log...
  18. A

    User log, how to make a carriage return in 'Log Event' ?

    True, though any decent File Manager should let you create a shortcut on your Home Screen direct to the file
  19. A

    User log, how to make a carriage return in 'Log Event' ?

    Instead of the User Log, you coud just use the Write To File action to write to your own log file- this does write strings containing newlines in the expected order. If you put all the filename handling and Write To File actions in an Action Block then you have a single action alternative to...
  20. A

    Show Action Block Input/Output Variables in sorted order when configuring

    Currently, when configuring a call to an Action Block, the Input and Output Variables are shown in created order- could we have them in alphanumeric order, the same as shown in the actual Action Block? Thanks
Top