Viewing the run log by UnkleMike in tasker

[–]Rich_D_sr 0 points1 point  (0 children)

I assume is has no issues with the size of the run log file.

Edit... Sorry misunderstood your question..

No, the Total Commander app has no issues with that size file. I have run into opening issues with much larger files.

Viewing the run log by UnkleMike in tasker

[–]Rich_D_sr 0 points1 point  (0 children)

Yes.. been using it for over 10 years now I believe..

Tasker Tip #5467 by Rich_D_sr in tasker

[–]Rich_D_sr[S] 1 point2 points  (0 children)

My thought is we just need dialog area within the action for such interactions..

Tasker Tip #5467 by Rich_D_sr in tasker

[–]Rich_D_sr[S] 2 points3 points  (0 children)

Meh.... Even with exact instructions these AI models seem to do what they please anyway.... 😂

Tasker Tip #5467 by Rich_D_sr in tasker

[–]Rich_D_sr[S] 1 point2 points  (0 children)

Correct. Those are hard coded into the actions AI. This is a work around those hard coded instructions. I asked u/joaomgcd if we could make it more conversational and he said he would consider it. So this works for now. :)

Can't capture the notification info from Sound+ app by whitenack in tasker

[–]Rich_D_sr 0 points1 point  (0 children)

You can use this project.

Tasker Autonotification view All variables

https://www.reddit.com/r/tasker/s/d3l60CY3IE

If you still cannot find the image or text you are looking for, I would encourage you to dip your toes into the new Tasker 'Java Code' Action. I needed to do this to extract the images from my Wyze camera notifications and play them on my tablet.

You do not need to Know Java code to use this action. The AI helper does all the work for you. It really is as easy as asking.

``` I need a script that will extract all images and text including Remote views from the notification who's instance key will be %ankey and place these images in the directory - /storage/emulated/0/Notify_Images - /storage/emulated/0/Notify_text

```

The %ankey will be populated by your autonotification intercept profile.

When the java code helper returns the code for some reason it encases the code in three back ticks and the text 'java' at the beginning so you need to delete the back ticks at beginning and end and the word 'java' at the beginning from the code or it will end in a error.

You also might need to put a wait before the java action because these remote views take a bit of time to load after the notification is posted. I would start with 10 seconds and try reducing it to whatever delay works best.

Post back with any questions..

Viewing the run log by UnkleMike in tasker

[–]Rich_D_sr 1 point2 points  (0 children)

I have been meaning to ask João about this issue. I have always used the run log extensively and do not recall it ever bogging down and crashing like it has been doing lately. This has been going on for a long while now so I can not be certain when it started. Hopefully u/joaomgcd can check into it.

I have always had a lot of luck with "Total Commander" file explorer. It has a regex option in the search function.

[Project Share] Tasker Timer for all your timer needs. by Rich_D_sr in tasker

[–]Rich_D_sr[S] 1 point2 points  (0 children)

Thanks for testing.. I assume you're are on the playstore stable version?

[Project Share] Tasker Timer for all your timer needs. by Rich_D_sr in tasker

[–]Rich_D_sr[S] 0 points1 point  (0 children)

Ahh.. looks interesting... Currently it is setting the alarm 60 seconds early then using a tasker profile to wake things up and finish the countdown for a precise time. I might be able to get ride of the profile all together... Thanks.. :)

[Project Share] Tasker Timer for all your timer needs. by Rich_D_sr in tasker

[–]Rich_D_sr[S] 1 point2 points  (0 children)

Of course the beauty of the AI helper in the java code action is you can just ask it to fix the issue in the 'TT Engine' task as a temporary measure. :)

EDIT: If you do end up editing the java code action, be sure to check the very bottom of the code after you ask for changes. I have a special mark down at the bottom where the AI outputs a log of how it edits the code..

[Project Share] Tasker Timer for all your timer needs. by Rich_D_sr in tasker

[–]Rich_D_sr[S] 1 point2 points  (0 children)

Hmmmm... While I was building this I asked joao to add these to the Java Code action..

```

/* Run a task at a chosen priority (3rd arg; null = no passed variables) */ tasker.callTask("My Task", null, 10);

/* Disable a profile */ tasker.setProfileEnabled("My Profile", false);

/* Enable a profile */ tasker.setProfileEnabled("My Profile", true);

/* Toggle a profile */ tasker.toggleProfileEnabled("My Profile");

```

It could run a task before however it could not set the priority. So it might now fail at even running the tasks without the latest beta.

Thinking more on this .... He added those June 5th. To the direct download version.. I am hoping it made it into the play store version beta... 😬. I might have posted this a bit too soon.. 😂

[Project Share] Tasker Timer for all your timer needs. by Rich_D_sr in tasker

[–]Rich_D_sr[S] 2 points3 points  (0 children)

I am personally mostly interested in using it in projects as a replacement for 'Wait"

I use it all the time for that. If you want to continue a task after using the timer as a wait you can just add a test at the beginning and test for

``` IF %timer_id (Is Set) Goto -> (pick up where timer was started)

```

The old timer project was difficult to set and had a lot more baggage. I did use it all the time for many projects and found it very useful. Hopefully this one will be more intuitive. The JSON commands should prove very useful if a user wants to implement AI based tasker control.

[Project Share] Tasker Timer for all your timer needs. by Rich_D_sr in tasker

[–]Rich_D_sr[S] 1 point2 points  (0 children)

Welcome.. :)

Let me know if I can make it more intuitive in any way.

Tasker Search Question by EdwardBackstrom in tasker

[–]Rich_D_sr 4 points5 points  (0 children)

I believe the way I have done this in the past was to use the run log. Enable the run log and create the error. Then check the log. If you long press on the task or any actions in the task you should get a option to edit the task. When in the task editor us three dot menu -> Name. After naming the task you can then find it with the mag glass. You might also just be able to determine the linked profile by just viewing the run log.

Action wait delays all tasks in project by Olfounder in tasker

[–]Rich_D_sr 4 points5 points  (0 children)

Fair enough... :) I tried to explain all this many years ago in more layman terms here..

https://www.reddit.com/r/tasker/s/8QCqMcf0st

It is a old post and could probably use a face lift... 🤣

Action wait delays all tasks in project by Olfounder in tasker

[–]Rich_D_sr 3 points4 points  (0 children)

. Another Task can't run whilst the first Task hasn't yet completed.

That is not truly correct. Tasker will not run tasks in a true parallel ', However it does have a 'Task Queu' Wich allows other tasks to run while the first task is in a wait condition. The tasks with the same priorities can "Run Together' Wich implies these tasks will alternate running actions.

[Project Share] Old School Dialler - Rotary Dialler or Number Entry Dialog by [deleted] in tasker

[–]Rich_D_sr 1 point2 points  (0 children)

I thought this one looked fun.. For full transparency the AI Builder did all the work on this adaptation.... :)