Search found 2709 matches

by Desmanto
26 Jul 2020 17:45
Forum: User Help / Bug Reports
Topic: regex?
Replies: 10
Views: 23958

Re: regex?

@pmgnt : I have been thinking to shorten the code, I find that we can use max for the length checking. Then I keep thinking on what if the name contains multiple number, such as AM tutor S1 EP1 . I assume you most likely want to increment only the EP1 > EP2, not the S1. Hence I use another regex pat...
by Desmanto
23 Jul 2020 10:17
Forum: User Help / Bug Reports
Topic: Proximity Sensor on Galaxy S20+
Replies: 17
Views: 36200

Re: Proximity Sensor on Galaxy S20+

I have checked other forum, xda, tasker and others; all state the same problem. S10/S20 proximity is internally controlled during certain app/activities (phone call). So it is different from RN9P, which still have real proximity sensor. Until someone find a workaround, there seems to be no way to us...
by Desmanto
23 Jul 2020 08:13
Forum: User Help / Bug Reports
Topic: Proximity Sensor on Galaxy S20+
Replies: 17
Views: 36200

Re: Proximity Sensor on Galaxy S20+

I install EAP 1.38, because it is not my phone and I just borrow a while for testing. There is no one here using S10/S20/Note10 which has punch hole, so can't test it. Try to install DevCheck. I install on my friend's RN9P, it has proximity sensor and light sensor listed as sensortek stk3x3x. I can ...
by Desmanto
23 Jul 2020 08:08
Forum: User Help / Bug Reports
Topic: regex?
Replies: 10
Views: 23958

Re: regex?

Can't replace directly, as you still need extra check on the number which end at 9. The easiest way is to pad the number to bigger padding and take the right char as many as the length. name = "Name1\nName9\nMid04end\nMid99end\nSpace 009 a\nSpace 999 b"; find = findAll(name, ".*?(\\d+).*", true); re...
by Desmanto
23 Jul 2020 06:02
Forum: User Help / Bug Reports
Topic: Proximity Sensor on Galaxy S20+
Replies: 17
Views: 36200

Re: Proximity Sensor on Galaxy S20+

I just tried with my friend's Redmi Note 9 Pro, which use punch hole design too. I install Automagic 1.38 EAP and add the proximity sensor trigger. It works fine, the flow trigger as expected. Value changed from 0 to 5 cm and vice versa. The proximity and light sensor is hidden under display, at the...
by Desmanto
22 Jul 2020 15:59
Forum: User Help / Bug Reports
Topic: "Set Speakerphone State: On" makes flow fail
Replies: 19
Views: 60553

Re: "Set Speakerphone State: On" makes flow fail

@bobeurone : You can find the button element id using Control UI Overlay. The tutorial is here : https://automagic4android.com/forum/viewtopic.php?f=6&t=7320 However to test it, you need to make a phone call. So preferably call to toll free number and you can test as long as you want. Even if the an...
by Desmanto
22 Jul 2020 15:56
Forum: User Help / Bug Reports
Topic: Unicode decimal code 
 removal
Replies: 9
Views: 19471

Re: Unicode decimal code 
 removal

Sometimes it is because of white space. You can check if the whitespace is there by pasting it to the regex tester. Non standard char usually revealed in the script. Your regex is too wide, it will match too many. Maybe you miss copy some of my script, or maybe somehow when you use http request from...
by Desmanto
22 Jul 2020 15:52
Forum: User Help / Bug Reports
Topic: Flows occasionally get stuck executing debug dialog; AM inccorectly states missing permissions
Replies: 9
Views: 24547

Re: Flows occasionally get stuck executing debug dialog; AM inccorectly states missing permissions

Maybe AM can add some kind of floating button when a dialog is hidden/stuck. The floating button is using widget component. It will appear when hidden/stuck dialog being shown (but hidden). Once we tap it, the hidden dialog will be shown and the floating button disappear again. Just like the INFO bu...
by Desmanto
22 Jul 2020 15:50
Forum: User Help / Bug Reports
Topic: Move2SD with Appmgr ?
Replies: 4
Views: 10698

Re: Move2SD with Appmgr ?

If you still want to use Appmgr, you can automate it using Control UI. viewtopic.php?f=6&t=7320
But you got to define some kind of loop here, so it is quite advanced usage already. I don't use Appmgr nor move2sd, so can't test it.
by Desmanto
20 Jul 2020 11:04
Forum: User Help / Bug Reports
Topic: How to set a trigger with a OR condition in filter
Replies: 2
Views: 8987

Re: How to set a trigger with a OR condition in filter

I just realize if I google "automagic multiple triggers", my post is the first answer : https://automagic4android.com/forum/viewtopic.php?t=6857#:~:text=You%20can%20add%20as%20many,can%20define%20new%20time%20trigger. At the trigger elements, tap the 5 line icon on the top, choose new. After adding ...