Search found 2709 matches

by Desmanto
07 Nov 2017 15:12
Forum: User Help / Bug Reports
Topic: Either RegExp is wrong or "matches=" is misunderstood
Replies: 4
Views: 13300

Re: Either RegExp is wrong or "matches=" is misunderstood

In Automagic, backlash is escape character, which need to be escaped as well. In regex tester, the backslash doesn't need to be escaped at all, since it is testing only. When you have the matches, you will see the regex pattern has been changed a little, especially the part where you have backslash....
by Desmanto
05 Nov 2017 16:13
Forum: Feature Requests
Topic: Run script Step by Step
Replies: 1
Views: 7022

Re: Run script Step by Step

+1 for this. The debug will act kinda like breakpoint, to pause the whole script and show the variable value. I typically split the script and attach debug dialog in the middle. And rejoin after it has finish. Or if it is error, Just attach debug dialog and change the connector to "Exception". It wi...
by Desmanto
05 Nov 2017 16:11
Forum: User Help / Bug Reports
Topic: android 4.1.2 timer app? Help please?
Replies: 2
Views: 8489

Re: android 4.1.2 timer app? Help please?

I tried and also not working on LP 5.1. Never use this before.

Why don't just make the timer in Automagic then? Just use sleep 29 minutes and put notification on status bar after it ended.
by Desmanto
02 Nov 2017 12:17
Forum: User Help / Bug Reports
Topic: How mighty is the Script-Action?
Replies: 3
Views: 10881

Re: How mighty is the Script-Action?

This will depends a lot on what kind of data you have, what is the size, date span range, typical usage, how folder structure inside and so many other things to be taken into account. A very specific usage for your own purpose. The easiest way, of course to check only based on date. Such as in CCTV/...
by Desmanto
02 Nov 2017 12:15
Forum: User Help / Bug Reports
Topic: [Dual sim] Outgoing call OFFHOOK
Replies: 3
Views: 11161

Re: [Dual sim] Outgoing call OFFHOOK

The control UI script above doesn't click on any element, we simply retrieve UI element, so it supposed to work properly. I ever try the Control UI during call, and it still works; including some crazy idea to replace the caller name by showing widget overlay over it (thus faking the name). Maybe th...
by Desmanto
02 Nov 2017 12:11
Forum: User Help / Bug Reports
Topic: Device orientation (face down) bug
Replies: 4
Views: 12859

Re: Device orientation (face down) bug

At mine, face up on table, flow enabled > it will trigger immediately. I think it should be the default behaviour. Any other position also triggered immediately as soon as it is enabled and in the correct position, including the negate version. The reason maybe just like what Martin said. When you p...
by Desmanto
01 Nov 2017 09:56
Forum: User Help / Bug Reports
Topic: [Dual sim] Outgoing call OFFHOOK
Replies: 3
Views: 11161

Re: [Dual sim] Outgoing call OFFHOOK

It seems to be phone specific problem, as a lot of vendor implement dual SIM differently. It is usually quite difficult to make it works properly if it deviates too much from the standard. Mine (LP 5.1) doesn't trigger when SIM selection pop up. Only after SIM is selected, the flow will be triggered...
by Desmanto
01 Nov 2017 03:53
Forum: User Help / Bug Reports
Topic: Device orientation (face down) bug
Replies: 4
Views: 12859

Re: Device orientation (face down) bug

Do you mean when the phone is face up, the trigger face up was not triggered? While when trigger set to face down, but phone face up, the flow was triggered? Kinda like inverted/reversed? If so, it is either your phone accelerometer calibration is off the chart or the phone sensor was inverted from ...
by Desmanto
30 Oct 2017 17:06
Forum: General
Topic: Teile einer Variable in anderen Variablen speichern
Replies: 3
Views: 12700

Re: Teile einer Variable in anderen Variablen speichern

You can use regex to match and capture them. Do you need the degree Celcius and the percentage? I assume you wanna the raw number including the decimal (so you can do calculation to it). If so, below regex only capture the digit. sensor = "11.5 ° C / 35.2%"; find = findAll(sensor, "(\\d\\d?\\d?\\.\\...
by Desmanto
30 Oct 2017 16:48
Forum: User Help / Bug Reports
Topic: Plugin
Replies: 2
Views: 9616

Re: Plugin

Simple. Just add the additional action you want if error happen. Then tap the connector from the plugin (or any potential error element), change the type from "normal" to "exception". Anytime error happen, it will branch to the "exception" path. This way, even a usual action element can branch to 2 ...