Search results

  1. I

    Purpose of "cancel after timeout" on if confirm?

    All it does is counts down to 0 and nothing else unless I'm missing something, was hoping it would auto close the popup, just curious.
  2. I

    Copy an array within a dictionary to another array?

    So lemme try to explain this as best as I can, look at the pictures to understand better, but here are my variables: Current Code = An array that contains an index of 1-4, all decimal types. Morse Code = A dictionary that contains an index from A-Z which are all arrays, the same as the other...
  3. I

    New click result function for UI interaction

    I'm wondering how this works. Not sure what it means by "block until result available" and how it saves to boolean if it's just an x,y location click unless this is more for text content? I'm just confused since I dunno where to look for the documentation and I wanna make sure I'm getting the...
  4. I

    Supported operations?

    Is there a list of currently supported operators that can be used in expressions? I'm trying to calculate if the current year is a leap year and having chat gpt do it, but I'm guessing % isn't supported so I'm trying to narrow down my options. Edit: nvm % does work I was doing the expression...
  5. I

    String variable length of an array?

    So basically I have 3 integer variables: • |04| Index • |04| Max Length • |04| Current Length (the one in the picture) And an array: • |04| Owned This is just for context, the problem I'm having is with "|04| Current Length". I'm wondering how can I extract the string length within an array...
  6. I

    UI Interaction with multiple text?

    This is my last obstacle I'm facing, but basically there's a button on this website that I'm trying to press, but it has a chance to come up with 2 different texts on it. I can use regex on the "screen content trigger" under a "wait for trigger" to match either of them when they show up, but I...
  7. I

    Open links from a Twitter notification?

    I'm trying to make a macro that extracts the link from a notification and open it in my browser. I already know how to extract the link using regex and simply use the open website action, but the problem with Twitter is that it's shortens links and adds a ... to the end of it, so I'm not able to...
  8. I

    ‎How to clear the value of multiple variables within a dictionary without removing them in one action?

    Before I explain, keep in mind that again these are variables within a dictionary (all strings, not using array because you can only index with integers which I'm not using), not separate local variables. As far as I know you can only do one at a time using the "clear dictionary/array entry"...
  9. I

    Recover macros from app?

    Since I basically can't open macrodroid without it crashing instantly, I've gone down the backup.ab rabbit hole and got stuck trying to change it to a .tar to see if all my macros are somehow in there, but it doesn't look like I'll figure that out anytime soon since I'm stuck with all this...
  10. I

    MacroDroid keeps crashing and saying "Write file action failed" in a notification.

    I restarted my phone and now MacroDroid won't open and keeps notifying me that, even though it has the "files and media" permission enabled. I'm afraid if I reinstall the app then I'll lose all the progress I made today since I only exported all my macros 12 hours ago so my only hope is my auto...
  11. I

    Add to the end of a string?

    Going off from my other post, I'm using text manipulation to extract text (being a couple numbers) from the title of a notification which I got working, I've already learnt how to go the array route for my situation, but now I'm wondering how to add those numbers to the end of a string variable...
  12. I

    Simple macro to check if variable exists within array?

    Let's just say I have a macro to extract the numbers from a notification that I receive every couple minutes or so into a string, if it doesn't already exist within the array then it'll store the number, but if it does exist then it won't. Does someone have a macro I can go off of to learn how...
Top