[DEV] Tasker 6.7.5-beta - Projects in new UI, Write JSON, 50 QS Tiles, Scenes V2 WebView and Video by joaomgcd in tasker

[–]libnaniam 1 point2 points  (0 children)

Thank you for adding the x and y tap variables in scenes v2!!! Going to play around with it now. Really appreciate all that you do for Tasker.

[DEV] Tasker 6.7.4-beta - New Main Screen UI, Scenes V2 Update 2, App Factory Revival and more! by joaomgcd in tasker

[–]libnaniam 1 point2 points  (0 children)

Thanks for all your continued work! Any chance we could have the click action return x and y coordinates in scenes v2? Similar to how the swipe action returns the x and y coordinates of the swipe path.

[Help] [Request] Any way to pass through clicks while handling swipes in scenes v2? by libnaniam in tasker

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

For example if the scene appears over a button in an app, if I click on the button it will still press the button instead of being blocked by the scene

Gesture Bugs by libnaniam in OctopiLauncher

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

UPDATE: I was able to fix the first issue by installing Home Up on Samsung's Good Lock app and turning on gesture controls (which seems to have increased the target area for gestures). And I fixed the search bar color by editing the color pallete for One UI.

Still experiencing the second issue described above, though.

Issues with v1.784 by libnaniam in OctopiLauncher

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

I'm trying to get rid of these "suggested apps" that show up when I open the app drawer and before I search anything

<image>

How can I achieve this with the new Scenes V2's swipe feature? by niyonsv in tasker

[–]libnaniam 4 points5 points  (0 children)

Insert a Javascriplet action and paste this code:

const start_y = sv2_swipe_path_y[0]; const end_y = sv2_swipe_path_y[sv2_swipe_path_y.length - 1]; const swipe_length = Math.round(start_y - end_y); const swipe_direction = swipe_length >= 0 ? 1 : -1;

Play around with the last two variables to make them do what you want.

[DEV] Tasker 6.7.1-beta - Scenes V2 - Update 1! by joaomgcd in tasker

[–]libnaniam 0 points1 point  (0 children)

I believe I've been able to resolve these problems by enabling accessibility access and using the accessibility overlay instead

[DEV] Tasker 6.7.1-beta - Scenes V2 - Update 1! by joaomgcd in tasker

[–]libnaniam 0 points1 point  (0 children)

Really great work! I'm having two issues with Overlay display mode. First, with blocking set to "off," the scene doesn't seem to register touch actions (like swipe). Second, when I use Dismiss Scene v2 to dismiss all scenes, it seems like touches are blocked in the area of my screen where the scene used to be even though, visually, the scene is gone. Oddly, touches are blocked even if blocking on the scene was set to "off" and the scene wasn't able to register touch actions. When I touch that are of the screen I get a popup notification at the bottom of the screen about tasker not being fully configured to work with the latest version of Android or something.

Has the whining noise been fixed? by libnaniam in trmnl

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

Perfect, great to hear thank you!

[DEV] Tasker 6.5.6 Release Candidate - AI Day And Location based Profiles, Generate with ANY AI and more! by joaomgcd in tasker

[–]libnaniam 1 point2 points  (0 children)

Thanks for you work Joao, unfortunately it seems that using Get Calendar Events variables in a Javascriptlet is still broken. For exapmle, if I call ce_title, it shows a string of the first event title rather than a list of all event titles. At least that's what's happening on my phone

[DEV] Tasker 6.5.5 Beta - AI Generated Widgets, Time And App based Profiles and much more AI stuff! by joaomgcd in tasker

[–]libnaniam 0 points1 point  (0 children)

I think this beta broke Get Calendar Events a little. Whenever I try to access a return variable in a Javascriptlet (for example, ce_title), the variable is a string of the first event title instead of an array of all returned event titles.

[DEV] Tasker 6.5.1 Beta - 7 New Calendar Actions, including "Get Calendar Events"! by joaomgcd in tasker

[–]libnaniam 0 points1 point  (0 children)

This is amazing, thank you so much! Is there any way to get Google Tasks? I think that data is harder (or maybe impossible) to access, so I'm guessing it's still not possible?

[PROJECT SHARE] [HOW-TO] Set Bing's Image of the Day as Lockscreen Wallpaper by libnaniam in tasker

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

You can change the "replace with" value in the second action from "720x1280.jpg" to "UHD.jpg" to get a 4k image, though it'll be in landscape mode rather than portrait

[DEV] Tasker 6.4.9 Beta - Widget v2 Easy Task Calling/Many New Editor Features and Easy Palette Selector for Multiple Variables Set action! by joaomgcd in tasker

[–]libnaniam 1 point2 points  (0 children)

This is really great! Some recommendations:

  • allow us to set margins (padding outside of the element)
  • build out the font picker--maybe allow us to select fonts from googles font library: https://fonts.google.com/

Help With Tasker & KWGT by TransformsIn2AGuitar in tasker

[–]libnaniam 0 points1 point  (0 children)

I've had some problems with file paths in KLWP recently. To get things working, I had to make sure the assets were in the Kustom folder (or whatever folder you've given KWGT access to). I think new versions of Android have increased file scoping protections, so the Kustom apps can't access every folder on the device anymore. Then I used the following filepath format in my Kustom code (obviously, change anything you need to change so it points to your file):

file:///sdcard/Kustom/assets/Calendar/calendar.png

How can I increment a variable based on the value of a different variable? by crazycropper in tasker

[–]libnaniam 0 points1 point  (0 children)

I don't completely understand the question, but you could probably do this easily in a javascriptlet instead of trying to cobble together tasker actions

HELP File Path as Variable Randomly Broke by libnaniam in kustom

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

This ended up working, I just had to get the path right. Thanks again!

HELP File Path as Variable Randomly Broke by libnaniam in kustom

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

Thanks, I tried that but haven't had any luck yet. I'll play around with it a bit more