r/tasker

▲ 1 r/tasker

Modes/Routines - possible?

Currently I have my phone go to silent when a calendar event is active, but I want it to sync to my Galaxy watch which needs modes/routines.

Whats the best way to go with this? I don't think Tasker has any mode/routine options, correct?

reddit.com
u/nath_ — 3 hours ago
▲ 40 r/tasker

[DEV] Tasker 6.7.3-beta - Scenes V2 - Update 2! (and some other smaller goodies)

Here's another incremental update to Scenes V2!

Important Note: again. the underlying mechanisms to handle interactions changed a lot since the latest Google Play release, so your existing Scenes V2 interactions (button click actions, etc) might not work with this new update. Sorry for the inconvenience! Please go into your scenes and use the new Event Handlers to handle Scene interactions! Also, Result Binding is now gone. You should always use variables to get results from your Scenes V2.

Sign up for the beta and download from Google Play here.

Note: Google Play might take a while to update. If you don’t want to wait for the Google Play update, get it right away here. (Direct-Purchase Version here)

Demo Video: https://youtu.be/3mId6ekwGuI

Image Preview: https://imgur.com/CBwS3mb

Display Mode Changes

There used to be a Continue Task Immediately checkbox that implicitly allowed you to wait for results from the scene if not checked. This was a bit confusing and easy to miss, so now the display mode includes "With Result" variants, so users have to specifically select which mode they want.

Dream Mode

Example: Self updating Tasker Clock that updates every second

Also, there's now a Dream display mode that sets your Android screen saver to Tasker Scenes V2! You can now have a totally interactive and custom screen as your screensaver! :)

Interactive Editor Mode

With a simple switch you can now test your layout directly in the editor! You can toggle switches, set variables, test Show When conditions and everything else you might think of! I use this all the time myself now :)

New Components/Modifiers

  • Flow Row/Column - Allow you to create dynamic rows/columns that automatically wrap depending on their contents
  • Segmented Button Row - kinda like a modern take on radio buttons with Multi selection as an option
  • Marquee - allows you to automatically scroll the component it's applied to if the space the to render it is not enough to show it all. It's not limited to text by the way :) You could add it to a row that has too many items to fit on the screen if you want to.

Event Handlers Revamp

You can now add multiple, ordered event actions to handle 1 or more events

For example, you could have a normal click AND a long click on the same button run the same actions.

You can add any number of actions to an event handler, in any order you want.

You can add these types of event actions:

  • Set Variable: Assigns a value to a screen variable (supports %var interpolation, so you can mix in other variables or literals).
  • Output to Variable: Takes the data an event produces (like the text from a text input or the new state of a switch) and saves it into one or more variables.
  • Toggle Variable: Flips a boolean variable between true and false.
  • Dismiss Layout: Closes the current screen and returns any output variables back to whoever opened it.
  • Haptic Feedback: Vibrates the device with one of three intensities: light click, heavy click, or double tap.
  • Run Component Action: Tells another component on the screen to do something (eg, toggle a switch/checkbox), with optional params.

Screen Events

The screen itself now also has events:

  • Back Pressed: when you press the back button on your device. You can optionally cancel the button so you can handle it yourself
  • Screen Shown: run something when the screen first shows up
  • Screen Hidden: run something when the screen goes away
  • Variable Changed: run something when ANY variable in the screen changes

With these events I was able to create the Clock Screensaver example above, making it start updating when the screen shows up and stop updating when the screen goes away.

Adding/Editing Tasks From Editor

People were upset that Scenes V2 couldn't have embedded Tasks. I think it's bad practice to put tasks in random places like that.

I brought those 2 ideas together and what you can do now is simply create or edit a task right from the editor. After you edit it, you go back to editing the layout and the task ends up in the same project as the scene you're editing.

Best of both worlds. 😁

Easy Swipe Handling

You now have the %sv2_swipe_length and %sv2_swipe_direction variables when a screen handles swipes so you can easily decide what to do with a swipe.

Out Of Memory Errors Handled

Not related to Scenes V2: Tasker now handles your memory better and should produce much less Out Of Memory errors than before. Let me know if you're still getting them nonetheless!

Full Changelog

  • Major Scenes V2: Show Scene V2 now has 7 display modes so it's clearer what each does and users don't get confused with hidden checkbox to continue task immediately. Back compat note: all existing Show Scene V2 actions will now NOT wait for the result. You have to change each one to add the With Result part.
  • Major Scenes V2: Added Interactive Mode option that allows you to interact with the preview directly, just like it was running on a real screen
  • Major Scenes V2: Added Segmented Button and Segmented Button Item components
  • Major Scenes V2: Added Screen Event Handling, allowing you to handle Back Pressed (and optionally cancel it), Screen Shown, Screen Hidden and Variable Changed events
  • Major Scenes V2: Added new Transitions tab, so you can animate your components when they appear/disappear
  • Major Scenes V2: added new Flow Row and Flow Column components
  • Major Scenes V2: added new Display Mode Dream
  • Major Scenes V2: added support for Scene V2 event monitoring in Java Code action
  • Major Scenes V2: editor: Allow adding/editing selected task right from the editor
  • Major Scenes V2: editor: changed the way Event Handlers work: now you have a list of event actions that can be bound to any event, and you can order them however you like. This allows for much more flexible event handling, like having multiple actions for the same event and ordering them in a specific way.
  • Major Scenes V2: editor: the Result Binding concept is now removed. All values in a scene are now variable based, set in states, event handlers, etc. eg, if you want a button to return a value, simply use the Set Variable action in the button's event handler to set a variable to the desired value when the button is clicked.
  • Major Scenes V2: added Marquee modifier that can be applied to any component for a scrolling ticker effect with configurable iterations, velocity, and spacing
  • Medium Scenes V2: add %sv2_swipe_length and %sv2_swipe_direction to Scene V2 action outputs
  • Medium Scenes V2: added option Show When Mode: allows a component to just be invisible or fully gone from a layout
  • Minor Scenes V2: Icon Button now supports any image source (URLs, SVGs, base64) in addition to Material icons, with a content scale option
  • Minor Scenes V2: Navigation Bar now fully controls the Navigation Items within, including the selected item.
  • Minor Scenes V2: Removed %sv2_element_value() variable and made %sv2_element_id a single value (the id of the element that made the layout dismiss) from Scene V2 outputs
  • Minor Scenes V2: add new Unfocus action to Text Input component
  • Minor Scenes V2: add option to prevent propagation of click events
  • Minor Scenes V2: added 6 color customization properties to Navigation Item (selected/unselected for icon, label, and indicator colors)
  • Minor Scenes V2: added Key Pressed event to Text Input with configurable key filter and option to consume the key press
  • Minor Scenes V2: added style variants (Outlined, Filled, Plain) and granular color overrides (border, label, placeholder, background, cursor, shape) to Text Input component
  • Minor Scenes V2: allow defining the duration of the long click event
  • Minor Scenes V2: allow scenes to set Profile/Project/Task variables
  • Minor Scenes V2: editor: Certain components can now only be added inside specific parent components (eg, Segment can only be added inside Segmented Button Row, Navigation Item can only be added inside Navigation Bar) to avoid confusion and make it more intuitive to build scenes
  • Minor Scenes V2: editor: Drag To Move can now be set with a variable
  • Minor Scenes V2: editor: Size Modifier now has a Uniform option to allow editing width and height simultaneously
  • Minor Scenes V2: editor: added Delete Component button to drag bar
  • Minor Scenes V2: editor: added cut/copy/paste buttons in the JSON tab
  • Minor Scenes V2: editor: added option to toggle test variables on and off
  • Minor Scenes V2: editor: allow picking image files directly from your file system
  • Minor Scenes V2: editor: move ident and move up and down buttons to the left of the component name and icon so they don't get obstructed by the FAB
  • Minor Scenes V2: editor: states only allow binding to 1 variable instead of multiple
  • Minor Scenes V2: editor: when a Spacer is added, give it a 16x16 Size modifier by default
  • Minor Scenes V2: editor: when deleting an item, automatically select a nearby component
  • Minor Scenes V2: if you use an inline Screen in the Show Scene V2 action and don't specify a screen id, the screen's name will be automatically used as the id
  • Minor Scenes V2: remove automatic padding from checkboxes and switches
  • Fix Scenes V2: Fix long-click root to dismiss option
  • Fix Scenes V2: Fixed changing type of component with the Update Scene V2 action
  • Fix Scenes V2: Fixed clicks on Card components
  • Fix Scenes V2: Fixed some release build related issues
  • Fix Scenes V2: Fixed updating array variables in some situations
  • Fix Scenes V2: TextInput now correctly handles Key Press event Stop Propagation
  • Fix Scenes V2: editor: Deleting, Undo, Redo now affect JSON in JSON tab if it's showing
  • Fix Scenes V2: editor: fix color of undo/redo buttons
  • Fix Scenes V2: editor: fixed red-eye visibility icon in the tree in certain situations.
  • Fix Scenes V2: editor: fixed Variable Component adding an extra % when selecting a variable
  • Fix Scenes V2: editor: fixed initializing the editor when certain JSON was pre-filled in
  • Fix Scenes V2: editor: fixed showing an empty tree when in the States tab and then selecting a component without states
  • Fix Scenes V2: editor: made Add as... Mini FABs look better
  • Fix Scenes V2: editor: show nice labels for output variables, instead of internal field names
  • Fix Scenes V2: fix issue of pressing back not removing the screen from the recents menu in Android
  • Fix Scenes V2: fixed editing a non-inline Scene from the Show Scene V2 action
  • Fix Scenes V2: fixed issue where Global Variables used in a scene would only update automatically in the scene if you saved your setup prior to showing the scene
  • Fix Scenes V2: fixed not being able to update elements values by their property name
  • Fix Scenes V2: fixed passing variables passed by a task and not modified in the scene to called tasks
  • Fix Scenes V2: fixed some variables not syncing correctly while in editor mode
  • Fix Scenes V2: fixed state and event variables being shown correctly when editing Show Scene V2 action.
  • Fix Scenes V2: fixed updating a variable to empty and it correctly clearing a variable component
  • Fix Scenes V2: optimize the writing of Scene V2 variables so it's faster in some cases
  • Added integration with System language picker available in Android 13+
  • Added action running time to the Running Tasks screen and made it update every second
  • Added Get Cell Info option in the Get Network Info action
  • Added option to send memory report in Tasker > Menu > Monitoring
  • Automatically show error message on screen when manually testing the Run Shell action in a task
  • Added isAccessibilityTool flag to direct purchase version of Tasker, so users can use Tasker's accessibility service with Advanced Protection Mode in Android 17
  • Added Dutch language
  • Added option to VPN Connected State to check on screen on. If disabled, avoids using the location permission every time screen turns on
  • Fixed several memory leaks
  • Fixed thread leak in Java Code
  • Tried to fix a crash that happens when multiple dialog actions run in a quick succession and made consecutive dialogs faster
  • Fix Custom Function helper in Device Admin/Owner action
  • Fix Tasker dialog actions disappearing when Keyboard is used
  • Fixed Widget V2 editor not showing the preview
  • Fixed bug that was changing the format of %DATE when updating to the beta (for those that previously updated, they have to change the language in Android Settings > Apps > Tasker)
  • Fixed crash that sometimes happens when importing
  • Fixed crash when using dialogs in some situations
  • Fixed various crashes
  • Fixed permission requesting for Shizuku in some situations
  • Fixed situation when 2 calendar states listen for the same event with different start early/end late values
  • Made some crashes provoked by the system that Tasker can't handle silently not crash Tasker in the background and just continue as normal
  • Sunrise/Sunset fixed some situations related to time zone changes
  • Tried fixing an issue with Logcat Monitoring.
  • Updated translations
  • Attempt to fix Clipboard Changed event not working in some situations
  • Attempt to fix Widget V2 preview in editor not rendering
  • Attempt to fix crash in Scenes V1 that would happen in very specific situations
  • Attempt to fix language changing related crashes
  • Attempt to fix out of memory errors when saving the Tasker setup (added logs to monitor the situation in the future)
  • Attempted to fix Chinese Translations
  • Attempted to fix issue with date time formatting in RTL devices

As always, enjoy! 😎

u/joaomgcd — 1 day ago
▲ 1 r/tasker

private space, disable fingerprint?

Hi, I have a task that locks my private space, I trigger it with a double-click on the home screen. I'd like to disable fingerprint unlock at the same time, is it possible? I'm on GrapheneOS and I use Shizuku.

Many thanks.

reddit.com
u/paranoid-alkaloid — 7 hours ago
▲ 1 r/tasker

How can I set my phone to notify me whenever it detects any sound?

I’m a beginner. I’d like my Android phone or tablet to play a specific notification tone whenever it detects any sound (so that when my camera receives the notification tone, the camera app alerts me) or to notify my phone directly. How should I go about this?thx

reddit.com
u/Professional-Wait19 — 7 hours ago
▲ 3 r/tasker+1 crossposts

DND issues and sound issue

Hello.👋👋

I'm having a problem that I haven't been able to fix yet, and it's caused by Tasker.

As soon as I activate DND mode, I lose all sound. This includes the volume of notifications, ringtones, my alarm (which doesn't work because of this), and even just general sound, like the sound off a YouTube video.

It's really annoying.

I know this problem is probably related to a Tasker setting, a mistake, or something else, but I've really, really tried to solve it, and nothing works.

I think that when DND mode is activated, the sound is completely muted; that's what Google Translate confirmed when I tried to have it read a text aloud and it said: "Sound is muted".

I've noticed that when recording my screen with the phone's audio selected, even when I switch to DND, the sound remains in the video.

The problem persists even if the application is uninstalled.

I'm on Android with a Xiaomi Poco phone.

I'm begging you, if anyone could help me, please.🙏🙏

reddit.com
u/Lyke_G — 2 days ago
▲ 1 r/tasker

Can Tasker's HttpRequest Profile handle https: ?

I think the answer is no - at least I cannot seem to get it to respond.

Perhaps someone knows a work-around?

Thanks

reddit.com
u/TooManyInsults — 2 days ago
▲ 1 r/tasker

Has anyone captured Blink’s AI video descriptions on Android?

Trying to log Blink AI descriptions (“A person is sitting on a chair…”) to Google Sheets via webhook.

MacroDroid catches the notification but body comes back empty:

TITLE=[Camera Name] TEXT=[] BIG=[{not_big_text}] SUB=[Camera Name]

The AI text is clearly visible in the notification shade, so Blink is pushing it — just not into any standard field MacroDroid can read. Tested [notification], [not_text_big], [not_text_lines] — all empty. Looks like Blink uses a custom RemoteViews layout.

Before I buy Tasker + AutoNotification ($5): has anyone actually captured Blink’s AI descriptions?

Did %antextbig / %antext / %anmessages work, or does the custom layout defeat that too?

reddit.com
u/ItsPassiveDepressive — 2 days ago
▲ 2 r/tasker

Locked screen automation

I'm new to Tasker and trying to figure out how to turn on my Smart switches so my lights come on in relation to when my alarm wakes me up in the morning . I'm trying to use my alarm because my work schedule varies day to day. The issue I'm having seems to be my phone being locked. The smart switches have their own app as well as being linked to Google home and a Google home widget also. I've been trying to use AutoInput. But can't get past the lock screen issue. I set my phone to not need a password when I'm home.

reddit.com
u/Colonel_Spankers — 21 hours ago
▲ 1 r/tasker

Google Messages Notifications and Tasker's Notification Removed Event

I've been working on the third iteration of my Notification Reminder project for the past few months and it seems pretty solid right now, with one notable exception: dealing with messages from multiple senders in a group thread in Google Messages.

Basically, the project is intended to provide recurring audible/vibrating reminders for selected notifications that I haven't acknowledged yet. Unique notification parameters, along with an assigned priority, are stored in a global array when a selected notification is received. As long as matching elements exist in this array, the reminder task is periodically launched. When a notification is cleared/removed, the matching array element (if any) is removed from the global array.

The problem I'm having is that for Google Messages, if a message is received from Joe Smith in a group thread, and a message in the same group thread is subsequently received from Bob Johnson, details from both notifications are added to the array, but once the group thread is opened in Google Messages, both notifications are cleared, but the only Notification Removed event triggered in Tasker is the one corresponding to the message from Bob Johnson. This causes the global array element for the message from Joe Smith to remain in the array, and the periodic reminder to continue, even though the message itself has been read.

Before I start trying to work around this behavior, I want to see if anyone else experiences the same behavior with Google Messages notifications, and see if anyone sees any issues with my code that would be related to the issue.

        Profile: Google Messages - Clear v3
    Variables: [ %debug:has value ]
    Event: Notification Removed [ Owner Application:Messages, Messages Title:* Text:* Subtext:* Other Text:* Cat:* ]
    
    
    
    Enter Task: Anon
    Settings: Run Both Together
    
    A1: If [ %debug Set ]
    
        A2: Parse/Format DateTime [
             Input Type: Now (Current Date And Time)
             Output Format: yyyy-MM-dd-HH:mm:ss
             Formatted Variable Names: %now
             Output Offset Type: None ]
    
        A3: Write File [
             File: Tasker/Google Messages.log
             Text: ---- Cleared ---- %now
             %evtprm(+%charLF)
             
             
             Append: On ]
    
    A4: End If
    
    A5: Multiple Variables Set [
         Names: %app,%title,%text,%subtext,%other,%cat,%pri
         Variable Names Splitter: ,
         Values: %evtprm(+%charTAB)
         Values Splitter: %charTAB
         Structure Output (JSON, etc): On ]
    
    A6: Variable Set [
         Name: %notification_string
         To: %app,%title
         Structure Output (JSON, etc): On ]
    
    A7: Variable Set [
         Name: %idx
         To: %nrNotifications(#?~R^[0-9],\Q%notification_string\E$)
         Structure Output (JSON, etc): On ]
    
    A8: If [ %idx neq 0 ]
    
        A9: Array Pop [
             Variable Array: %nrNotifications
             Position: %idx ]
    
        A10: Write File [
              File: Tasker/Google Messages.log
              Text: idx = '%idx' - matching notification found
              Append: On
              Add Newline: On ]
            If  [ %debug Set ]
    
    A11: Else
    
        A12: Write File [
              File: Tasker/Google Messages.log
              Text: idx = '%idx' - no matching notification found
              Append: On
              Add Newline: On ]
            If  [ %debug Set ]
    
    A13: End If
    
    A14: Variable Set [
          Name: %idx
          To: %nrNotifications(#?~R^[0-9],\Q%notification_string\E$)
          Structure Output (JSON, etc): On ]
    
    A15: If [ %debug Set ]
    
        A16: If [ %idx eq 0 ]
    
            A17: Write File [
                  File: Tasker/Google Messages.log
                  Text: pop successful
                 
                 
                  Append: On ]
    
        A18: Else
    
            A19: Write File [
                  File: Tasker/Google Messages.log
                  Text: pop failed
                 
                 
                  Append: On ]
    
        A20: End If
    
    A21: End If
    
    
    Profile: Google Messages - Set v3
    Variables: [ %priority_groups:has value %debug:has value ]
    Event: Notification [ Owner Application:Messages, Messages Title:* Text:* Subtext:* Messages:* Other Text:* Cat:msg New Only:Off ]
    
    
    
    Enter Task: Anon
    Settings: Run Both Together
    
    A1: If [ %debug Set ]
    
        A2: Parse/Format DateTime [
             Input Type: Now (Current Date And Time)
             Output Format: yyyy-MM-dd-HH:mm:ss
             Formatted Variable Names: %now
             Output Offset Type: None ]
    
        A3: Write File [
             File: Tasker/Google Messages.log
             Text: ---- Created ---- %now
             %evtprm(+%charLF)
             
             
             Append: On ]
    
    A4: End If
    
    A5: Multiple Variables Set [
         Names: %app,%title,%text,%subtext,%messages,%other,%cat,%new
         Variable Names Splitter: ,
         Values: %evtprm(+%charTAB)
         Values Splitter: %charTAB
         Structure Output (JSON, etc): On ]
    
    A6: If [ %text neq Sensitive notification content hidden ]
    
        A7: Simple Match/Regex [
             Type: Regex
             Text: %title
             Regex: ^((?<group>.*)?(: ))?(?<sender>.+)$ ]
    
        A8: Variable Set [
             Name: %message
             To: %text
             Structure Output (JSON, etc): On ]
    
    A9: Else
    
        A10: Simple Match/Regex [
              Type: Regex
              Text: %title
              Regex: ^(?<sender>.+): (?<message>.+)$ ]
    
    A11: End If
    
    A12: If [ %sender ~R [A-Za-z] ]
    
        <urgent>
        A13: Perform Task [
              Name: isContactInGroup
              Priority: %priority
              Parameter 1 (%par1): %sender
              Parameter 2 (%par2): %priority_groups
              Return Value Variable: %urgent
              Structure Output (JSON, etc): On ]
    
        <normal>
        A14: Perform Task [
              Name: isContactInGroup
              Priority: %priority
              Parameter 1 (%par1): %sender
              Parameter 2 (%par2): my contacts
              Return Value Variable: %normal
              Structure Output (JSON, etc): On ]
    
        <ignore>
        A15: Perform Task [
              Name: isContactInGroup
              Priority: %priority
              Parameter 1 (%par1): %sender
              Parameter 2 (%par2): ignore
              Return Value Variable: %ignore
              Structure Output (JSON, etc): On ]
    
    A16: End If
    
    A17: If [ %urgent eq true ]
    
        A18: Variable Set [
              Name: %pri
              To: 2
              Structure Output (JSON, etc): On ]
    
    A19: Else
        If  [ %normal eq true ]
    
        A20: Variable Set [
              Name: %pri
              To: 1
              Structure Output (JSON, etc): On ]
    
    A21: End If
    
    A22: Variable Set [
          Name: %notification_string
          To: %app,%title
          Structure Output (JSON, etc): On ]
    
    <only push if not a message reaction, the priority is set, there's no existing array entry for the title, and we're not ignoring this contact>
    A23: Array Push [
          Variable Array: %nrNotifications
          Position: 1
          Value: %pri,%notification_string ]
        If  [ %message !~R %messageReactionRegex & %pri Set & %nrNotifications(#?~R^[0-9],\Q%notification_string\E$) eq 0 & %ignore neq true ]

Note: %charTAB value is a TAB character (defined in another task/profile that runs on device boot), %messageReactionRegex value is (?s).+ “.+” (a regular expression used to identify iOS/RCS message reactions), %priority_groups is a simple pattern matching string, for example my family/my doctors.

reddit.com
u/UnkleMike — 19 hours ago
▲ 1 r/tasker

Launch task based on numerical value?

I'm trying a *weird* thing, I'm on solar and like to charge my EV only when it's sunny out. My solar charge controller has a charge readout measured in watts, I have a camera pointed at the controller display so I can see how well it's charging for the day. I want to automate turning my car charger on and off depending on the amount of watts the power is currently charging. My idea is to have a tablet running tasker, the camera feed, and the smart home application, periodically screenshot the video feed, pull the number value from the screen and feed that into tasker, if above a set value it'll turn on the charger, if lower it'll stay off.

Is this idea wildly overcomplicated? Is there a better idea?

Appreciate any feedback!

reddit.com
u/InfinitumDividatur — 2 days ago
▲ 2 r/tasker

Unable to use port 16443 in HttpRequest Profile

For reasons unknown, Tasker will not allow me to specify a port value of 16443 in my profile. It errors saying only values in the range 1025-9999 are supported.

Why is this the case? How can I work around this?

I really need to use this port because the app from which the request will come hard codes it and I cannot change it.

Thanks!

reddit.com
u/TooManyInsults — 2 days ago
▲ 23 r/tasker

[Project Share] WuzzApp — Automate WhatsApp. No root. No cloud.

> ⚠️ Disclaimer: WuzzApp is not affiliated with WhatsApp. Use responsibly and within WhatsApp's terms of service.

This project brings WhatsApp mod-level features through Tasker, Termux and WuzAPI.

Setup Instructions

Features

  • Real-time alerts: status updates, read receipts, typing indicators
  • Auto-sync high-res WhatsApp profile pics to your contacts
  • Fire tasks automatically based on WhatsApp events
  • Send text messages
  • And more...

Screen Records

How It Works

It runs a local WuzAPI server inside Termux and connects to it via Tasker.

Visit GitHub for more information.

Import the project as instructed in the setup guide — it won't do much without it!

Feedback and contributions welcome!

u/WhirlWolf — 4 days ago
▲ 2 r/tasker

Scene Overlay Issue

Even after dismissing all the tasker scene v2, my android stil keeps the "Tasksr is displaying over apps" notification continuously. Idk the exact criteria to replicate it but mostly it happens when scene auto dismisses.

Can anyone tell me how to fix it properly ?

reddit.com
u/MohitSharmaji — 2 days ago
▲ 2 r/tasker

Automating tasker to open tapo camera live feed on motion detection

looking to automate my Samsung tablet to open tapo camera live feed on motion or person detection. tried multiple times but to no avail 😕

reddit.com
u/Anderos12 — 3 days ago
▲ 3 r/tasker

Disable Low Battery Notifications

I got Tasker and Automate specifically for disabling the low battery notifications on my Honor Magic 5 phone based off a thread I read from Google.

I've tried following the guide but cannot get it to work, I still keep getting notifications.

Could anyone please give me an idiot's walk through?

reddit.com
u/Sad_Raccoon_9099 — 2 days ago
▲ 2 r/tasker

SMS Messages received quickly doesn't seem to work reliably

Hi all,

I'm new to Tasker. I have a profile that is active when a text message is received from a specific number. It takes data from that message and does other things with it. This typically works just fine! It's super cool.

Sometimes texts are received quickly, maybe practically at the same time. This happened the other day where three were received at about the same time. Tasker seemed to react to the first and the third message. At least, that's what the "thing" that gets the data from these messages says. I saw text number 1 and 3. Not 2.

I can't really control the rate of these messages so I'm wondering if there are any ways I can configure a profile to accommodate messages received at the same time or nearly the same time as it seems Tasker could struggle with that situation.

Thanks--

reddit.com
u/_lunchbox_ — 4 days ago
▲ 2 r/tasker

Input Dialog broken in recent dev versions

Error as shown in the action:

22.11.38/E Only the original thread that created a view hierarchy can touch its views.

reddit.com
u/Tortuosit — 4 days ago
▲ 1 r/tasker

How do i trigger a sprofile based on battery decrease by 10%?

I know there is a state profile Battery Level but this profile can only trigger 2 times (from and to). How can i make it trigger every time the battery decrease by every 10% for example without needing to create multiple profiles?

reddit.com
u/Nirmitlamed — 6 days ago
▲ 11 r/tasker

[DEV] Scenes V2 Poll - Most Common Usage: Get Result or Not?

The new Scene V2 in Tasker (available in the beta) allows you to show a scene and directly get results from it: variables, interaction details, and more.

However, I'm not sure if this use case will be more frequently used than simply using a scene as a screen that DOESN'T return a value back to the same task.

You can control this behaviour with the option "Continue Task Right Away" which is disabled by default right now.

The problem with making the task wait for a result by default is that many people get confused why the task is still running after showing the scene.

The problem with making the task continue running right away is that I fear most people will never find the ability that scenes have to return values to the same task where it was called from.

So, what do you think? Will you use Scenes V2 more as

- Standalone Screens, where you call tasks from inside them and don't care about returning values back to the same task

OR

- Screens where you do something in them and then expect the same task to get results from the scenes and continue doing stuff with that?

Or is there a better way to handle the "Continue Task Right Away" option altogether?

Thanks in advance!

View Poll

reddit.com
u/joaomgcd — 7 days ago
▲ 1 r/tasker

screenshot / sensors

HI, Iam new to tasker just bought the app

Iam trying to use the app the simple way I need just one action for now shake device or flipit to take screenshot directly and save it to gallery not share screen option and share

actually Iam frustrated that I can't achieve it the right way

they over too many notifications with error messages that I haven't faced in similar app

is there anyway or video to achieve that

thanks

reddit.com
u/sinful-slave — 3 days ago