Search found 2709 matches

by Desmanto
27 Jul 2017 02:42
Forum: User Help / Bug Reports
Topic: Nested json?
Replies: 2
Views: 9912

Re: Nested json?

I also don't know much about JSON. Currently I am also trying to digest XML lesson, and need hours just make 2-3 script :( But if you don't mind the way, you can use Regex to capture the value. I am still learning it, automagic regex tester has been very helpful. data = findAll(findAll(response, "AR...
by Desmanto
26 Jul 2017 15:58
Forum: User Help / Bug Reports
Topic: App Task Started - Requires Reset
Replies: 18
Views: 50436

Re: App Task Started - Requires Reset

Ah, glad you solved it.
Seems like your phone's notification bar UI merge with the foreground app.
So the foreground/background switch event doesn't work as expected.
Maybe Martin can implement a workaround for things like this in the future release.
by Desmanto
26 Jul 2017 15:16
Forum: General
Topic: Copy Text from Statusbar notification to clipboard
Replies: 2
Views: 11318

Re: Copy Text from Statusbar notification to clipboard

Trigger : Notification on Statusbar Displayed You can access all variable derived from this trigger. Check the help to see them all, or just use Condition : Debug Dialog to see all the variable and its content. To copy these variable to clipboard, use Action : Copy Text to Clipboard At the Text, fil...
by Desmanto
26 Jul 2017 15:10
Forum: User Help / Bug Reports
Topic: App Task Started - Requires Reset
Replies: 18
Views: 50436

Re: App Task Started - Requires Reset

@Bingwu : For battery usage, need to have a really isolated experiment to try it out. So far, if you can't notice it, then maybe it doesn't affect much. However e-ec-ecu's problem was on the Trigger : App Task Started not working as expected. So still need to troubleshoot that trigger first. @e-ec-e...
by Desmanto
26 Jul 2017 12:06
Forum: User Help / Bug Reports
Topic: App Task Started - Requires Reset
Replies: 18
Views: 50436

Re: App Task Started - Requires Reset

@Bingwu : It will trigger on every app. Doesn't that slow down the whole system? (or at least drain more battery)
And that will spam the set Screen timeout everytime opening a new app. It is better to troubleshoot the App Task Started trigger first.
by Desmanto
26 Jul 2017 03:06
Forum: User Help / Bug Reports
Topic: App Task Started - Requires Reset
Replies: 18
Views: 50436

Re: App Task Started - Requires Reset

I have a similiar trigger, but to set the display to higher brightness and turn off heads-up notif when certain games started. App Task Started works properly at my LP 5.1. When I swipe down notif/quick settings, it will out of foreground. Closing the notif will trigger the flow again. Probably you ...
by Desmanto
26 Jul 2017 03:05
Forum: User Help / Bug Reports
Topic: Completely silence phone?
Replies: 8
Views: 23853

Re: Completely silence phone?

If all else don't work, you have to use the system setting. Use Action Launch App - Settings. Use Control UI and navigate to the setting - Sound (or similiar menU). Then still using the Control UI, slide the volume down. The UI layout is different in each phone, so you gotta figure this out by yours...
by Desmanto
26 Jul 2017 01:23
Forum: User Help / Bug Reports
Topic: Completely silence phone?
Replies: 8
Views: 23853

Re: Completely silence phone?

Hi. I found (thank you) the set ringer to [silent] action. Unfortunately, it didn't stop the phone from buzzing. It's an old moto e 4.4. What kind of vibration do you still have? When phone rings? incoming message, notification (from certain apps), calendar or something else? Some app probably igno...
by Desmanto
25 Jul 2017 13:12
Forum: User Help / Bug Reports
Topic: Completely silence phone?
Replies: 8
Views: 23853

Re: Completely silence phone?

I have "set vibrate on ring state:off" and "set audio stream volume to 0" for notification,music,ring,system, and even "voice call" it still vibrates on various alerts/notices... If I click "down" on the volume button it goes completely silent. Thanks for your time. Not that action, it is different...
by Desmanto
25 Jul 2017 02:37
Forum: User Help / Bug Reports
Topic: Use a variable's value in the name of another variable?
Replies: 1
Views: 8395

Re: Use a variable's value in the name of another variable?

There is a way, similiar to indirect method in excel. To declare the GloVar, use setValue() instead of usual direct equal sign. We cannot declare the value directly, since we want to replace it in inline. To refer to the GloVar, We need to use eval(). If we don't eval it, the variable will be assign...