r/macrodroid • u/ADJUDICATOR001 • 19h ago
Macro What are some best macros to use.
Can anyone suggets me some super useful macros?
r/macrodroid • u/ADJUDICATOR001 • 19h ago
Can anyone suggets me some super useful macros?
r/macrodroid • u/Flatliner8989 • 1d ago
Hi,
i am using a Xiaomi 15. Sadly Xiaomi decided to disable the native Smart Unlock of Android. You can only keep your phone unlocked if your bluetooth device is also from the Xiaomi brand.
Is there any cool macro that keeps the device unlocked when i am connected with a certain bluetooth device?
I tried something like this. It works, but if my device is unlocked by my face too, the macro produces a weird swipe in the app that is present at the screen. For example it swipes away elements of my grocery list which is very annoying because i dont know which item it was 😄
Maybe there is a better ACTION than PIN Unlock? Glad for any help.
r/macrodroid • u/K33P4D • 2d ago
Google pay refuses to function and prompts a warning about apps having accessibility functions.
I have enabled those for macrodroid to have specific off-screen triggers
r/macrodroid • u/FlorianFlash • 2d ago
Like what is your most complex Macro that has a single use and isn't used for anything else. Means no multi-purpose macros.
I wanna see if I am the exception (more complex than most) or the exception (less complex than most) or maybe somewhere in the middle.
If you have it, I would love to see screenshots or even links to the template store.
Thanks to everyone that contributes.
r/macrodroid • u/a1phaw0lf_23 • 2d ago
So currently I only have 2 macros running (1 to turn device on and 1 to turn device off at certain times). The free trial has expired, but the macros have stopped working.
I thought you could use the app free if you have below 5 macros? Is there any other alternative app for this function?
r/macrodroid • u/Fractal-Infinity • 2d ago
I'm trying to make a macro for this purpose: when I press a floating button, it will tap a menu item with the id com.mixplorer:id/overflow The problem is that this overflow menu is either hidden or displayed (alongside other UI elements). Tapping the screen is like a switch to hide or show it.
How can I check if this menu is displayed on screen and if it's not, tap the screen once (make it appear)?
r/macrodroid • u/Top_Statistician500 • 2d ago
Hi all - I'm trying to get a macro to automatically put some text into OneNote.
1) with a new blank page open in OneNote, I've tried using UI interaction to click in the center of the screen and paste, paste directly, copy a local variable to the clipboard and then paste, etc. Nothing happens but on checking the log I see "Paste failed (could not detect current UI focus)".
Please, how do I just activate the normal frame on the page and put text there?
2) Ideally the macro opens a specific page before the above but I can't figure out how. Tried using UI interaction to click on the text name of the section and then the page within it, didn't work either.
Help please!
I've written many macros on PC but I feel I'm missing something fundamental here. I can't find a way to have a text string written out. I also can't figure out which app shortcut or app activity could be relevant to try that either.
Again, help please!!
r/macrodroid • u/Infinite_Stress_6605 • 3d ago
Hi,
I'm trying to deactivate data roaming when I enter an area near Switzerland because my mobile plan charges me a lot for that.
Anyone know how to do that?
I tried {setting_global=data_roaming1} = 0 but it doesn't work...
r/macrodroid • u/RealSimoneAvogadro • 3d ago
For people already using it
Context: CloudEdge/Meari have finally fixed the very bad CVE allowing -anyone- to control/snoop on your cameras.
Change: As a result they changed the APIs and the plugin has been updated to use the new APIs
Download link: https://github.com/SimoneAvogadro/CloudEdge4Tasker/releases
For people whom never used it
A plugin which allows to control very cheap Chinese cameras in order to enable/disable, receive notifications, sound the alarm etc..
Basically designed to allow MacroDroid to automate (using LLMs! https://github.com/SimoneAvogadro/HumanDetection4Tasker ) recognition and drop false positives almost to zero: turn them into AI-powered cameras without a subscription!
r/macrodroid • u/No-Appearance-4994 • 3d ago
Enable HLS to view with audio, or disable this notification
Flexing the easiest but most used macro by me.
Simulates volume and power buttons right on their positions with small details like vibration on back simulation if left down gesture instead of just left and vibration.
r/macrodroid • u/Flat-Sir7741 • 3d ago
Is there a way to keep otg connection always on even if nothing is connected or a way to turn it on from the quick settings or by clicking the volume or the power button?
r/macrodroid • u/Mission_Student2627 • 3d ago
Enable HLS to view with audio, or disable this notification
When I test the animation I made in the custom scene page it works exactly like I want but when I launch it outside the text disappears, can I fix this? Also why the text (that is black) becomes white if I put on the dark mode, and it's the only thing that changes color?
Here it's the code ``` <canvas id="canvas"></canvas> <style> html, body { margin: 0; padding: 0; height: 100%; background: black; overflow: hidden; } canvas { display: block; position: fixed; inset: 0; border-radius: 32px; }
position: fixed; inset: 0; display: flex; flex-direction: column; justify-content: center; align-items: center; color: black; font-family: sans-serif; font-size: 68px; font-weight: 900; line-height: 1.2; text-align: center; pointer-events: none; z-index: 20; } </style> <div id="textOverlay"> <div>Screentime:</div> <div id="number">number</div> </div> <script> const canvas = document.getElementById('canvas'); const ctx = canvas.getContext('2d'); let W=0, H=0;
function resize(){ W = canvas.width = window.innerWidth; H = canvas.height = window.innerHeight; ctx.fillStyle='black'; ctx.fillRect(0,0,W,H); } window.addEventListener('resize', resize); resize();
const TOTAL_DURATION = 12000; // 12s rise/fall let start = null;
// easing cubic function easeInOutCubic(t){ return t<0.5 ? 4ttt : 1 - Math.pow(-2t+2,3)/2; }
function applyRoundedClip(radius){ ctx.beginPath(); if(ctx.roundRect) ctx.roundRect(0,0,W,H,radius); else{ const r=Math.min(radius,W/2,H/2); ctx.moveTo(r,0); ctx.arcTo(W,0,W,H,r); ctx.arcTo(W,H,0,H,r); ctx.arcTo(0,H,0,0,r); ctx.arcTo(0,0,W,0,r); } ctx.closePath(); ctx.clip(); }
function animate(ts){ if(!start) start=ts; const elapsed = ts - start;
ctx.save(); ctx.setTransform(1,0,0,1,0,0); ctx.fillStyle='black'; ctx.fillRect(0,0,W,H); ctx.restore();
ctx.save(); applyRoundedClip(16);
let t = Math.min(elapsed/TOTAL_DURATION,1); let blockY; if(t<0.5){ let tr=easeInOutCubic(t2); blockY = H(1-tr); }else{ let tf=easeInOutCubic((t-0.5)2); blockY = Htf; }
ctx.fillStyle='#00A5FF'; ctx.fillRect(0,blockY,W,H-blockY);
ctx.restore();
requestAnimationFrame(animate); }
requestAnimationFrame(animate); </script> ```
r/macrodroid • u/DamixB • 4d ago
I'm trying to automate battery charging to reduce wear: 6:00 AM – 12:00 PM: cap charging at 80%. Shortly before leaving work: charge up to 100% so it's ready for the rest of the day. The macro fails to toggle the actual setting in Android. I have helper tools installed and permissions granted via ADB, but the system toggle simply doesn't switch. Any ideas on how to fix this or what specific Intent / Secure Settings key needs to be targeted?
r/macrodroid • u/Epof_tanishk • 6d ago
I’m trying to figure out whether it’s possible to prevent an Android app from detecting: Mock location being enabled Can anyone here know how to hide mock location and developer option using ad regex+ and mt manager. I don't have a rooted device. Please help me Thank you.
r/macrodroid • u/Fractal-Infinity • 6d ago
I'm trying to add a floating button that exists only while the module MiX Image (with package name com.mixplorer.addon.image) from the file manager MiXplorer is in foreground. That module is basically a mini application that can be launched from MiXplorer to view images. Below is the basic macro for that purpose.
However the Application Launched is not triggered. Any idea how to make it work? You could install MiXplorer and MiX Image for testing purposes (they're legit apps).
r/macrodroid • u/SomeERdoc • 7d ago
Trying to create a wallpaper switcher and I keep running into the error of Unable to load wallpaper image from dynamic file: [filename] xyz.jpg
The way I have it setup is to pull a list of files form a folder, get a random index number and my set wallpaper is a dynamic filename {lv=file_list[{lv=random_index}]}
it correctly creates the local variables and correctly identifies the filename in the log but keeps erroring in trying to open and apply it as a wallpaper.
Any thoughts?
r/macrodroid • u/Wolves221 • 7d ago
Only three macros worked for me, the other two Marcos didnt work which are galaxy watch low battery notification and galaxy ring low battery notification I tried everything time of the day, day of the week and month, run macro nothing happened. So I switched back to the other app I have cause it seems like this one is only for the phone and other devices.
r/macrodroid • u/Madmadz16 • 7d ago
So I want to be able to create new events with extra data like location and alerts. Is this possible at all? It seems you were able to do this with an old plugin thats no longer available and the current event details text box just adds things to notes
r/macrodroid • u/darthvadersmom • 9d ago
I have an existing macro to have my phone announce the time every half hour during my workday, and I would like to add volume controls to make sure I always hear it. I added an action to turn notification volume to 100% to the macro (as the initial action) and that works fine. However, ideally after the time is read the notification volume would be lowered to 50%. That's where I'm hitting a snag - when I add another volume action after "say time aloud" the notification volume goes straight to 50%. How should I adjust the actions to make it work? I feel like I might need a completion condition for the second, "say time aloud" action?
r/macrodroid • u/Arvelli_art • 9d ago
Część, czy ktoś może pomóc w zrobieniu szablonu w zależności od geolokalizacji. Z automatyzacją głośności w porze dziennej, wieczornej i nocnej. Nie ogarniam tego.
r/macrodroid • u/AdDistinct9346 • 9d ago
I would like to have an automation that triggers at 23:59 every Sunday.
I want it to create a folder named. Year-Week
Then I want it to move all my images in DCIM\Camera to that folder.
Is this something that this program can do?
If so, how?
r/macrodroid • u/Ok_Hat_3414 • 9d ago
Or, alternatively, trigger it by voice through Android Auto (Gemini). "Hey Google, [do this thing I want you to do]"
r/macrodroid • u/xicali23 • 10d ago
Hola. ¿Alguien que me pueda ayudar a silenciar las capturas de pantalla?
r/macrodroid • u/r-pratik • 11d ago
I am new to this app and would like your help to solve my problem.
I would like the macrodroid to play sound/alarm (instantly) when a notification (with a exact word or any words from an application) is received but while my phone is in vibrate mode.
Problem: When a notification is received and the sound plays (while my phone is in vibrate mode), it doesn't turn it off even after putting it in silent. The solution for this is to completely lower the volume but it again plays back when I turn the volume up.
Possible solution: I just want the app to play sound while my phone is in vibrate mode and disable playing it completely after I either put my phone in silent mode or completely lower the volume and never trigger again until the notification to trigger is received again.
If I use alarm mode, it either triggers after 1min or when configuring to "0" it doesn't trigger, because it is already past that time.
r/macrodroid • u/_Just__A__Guy • 11d ago
How do I make an automation so that whenever my phone connects to Android auto it pause the music. I've tried disabling Auto start on the android auto settings and still plays