Search found 2709 matches

by Desmanto
26 Aug 2020 06:50
Forum: User Help / Bug Reports
Topic: Flow execution policy maximum
Replies: 2
Views: 16527

Re: Flow execution policy maximum

Never try it to the max. I ever use 10000 for the AES and still can be handled. The term "Actions" is somewhat missed, should be "Element" (trigger, condition, action). However trigger is not counted for AES if it has action/condition after it, so you can exclude trigger. Any element executed after ...
by Desmanto
25 Aug 2020 17:54
Forum: User Help / Bug Reports
Topic: The End of Automagic
Replies: 54
Views: 4395290

Re: The End of Automagic

@igoryan94 : Should have ask in another thread instead. To reinstall/downgrade, simply copy your Automagic folder at /storage/emulated/0/Automagic, to somewhere else. Uninstall Automagic, and reinstall from playstore. That folder should be intact, so at the first opening, Automagic should have promp...
by Desmanto
23 Aug 2020 05:47
Forum: User Help / Bug Reports
Topic: Something very weird going on here!
Replies: 6
Views: 27983

Re: Something very weird going on here!

@JC : It seem {Percentage_Change_Sixty_Min} contains invisible char, such as nbsp or other white space. Try to use encodeURL () to check the content check = encodeURL(Percentage_Change_Sixty_Min); //if 0.45% should be 0.45%25 % is ascii code number 25, hence when encoded will be %25. Other example, ...
by Desmanto
23 Aug 2020 05:34
Forum: User Help / Bug Reports
Topic: Help for Functions
Replies: 3
Views: 21647

Re: Help for Functions

Function are parts of script/Control UI help, as mentioned by Hit.

You can find it in the help section of action,
Script : https://automagic4android.com/action_script_en.html
Control UI : https://automagic4android.com/action_co ... ce_en.html
by Desmanto
22 Aug 2020 16:52
Forum: General
Topic: Will Android 11 break Automagic?
Replies: 20
Views: 105821

Re: Will Android 11 break Automagic?

Only time can tell. From the description, it seems the app must target android 11. Since AM stop already now, so It shouldn't be affected (until some time in the future where google enforce this).
by Desmanto
22 Aug 2020 16:51
Forum: User Help / Bug Reports
Topic: Trigger Launcher Trigger in v1.38
Replies: 4
Views: 20741

Re: Trigger Launcher Trigger in v1.38

It is mostly for app which doesn't support "Launch Shortcut". viewtopic.php?f=4&t=7942

Bixby can only "launch" app, not shortcut. Hence, this trigger is created to accomodate that.
by Desmanto
20 Aug 2020 08:46
Forum: User Help / Bug Reports
Topic: UI Event Trigger: Source_Class_Name
Replies: 6
Views: 31398

Re: UI Event Trigger: Source_Class_Name

The syntax is correct already, with double equal sign source_class_name == "android_widget_Button" Use the debug dialog when the false is returned, scroll to find the source_class_name and copy the value from there, paste it back to the expression. You might have upper/lower case problem here. BTW, ...
by Desmanto
20 Aug 2020 08:10
Forum: User Help / Bug Reports
Topic: UI Event Trigger: Source_Class_Name
Replies: 6
Views: 31398

Re: UI Event Trigger: Source_Class_Name

Which mean the event triggered the flow doesn't have "android_widget_Button". Add a condition debug dialog in the false branch and check the variable source_class_name value. Maybe there is different value at every trigger. In that case, you might want to use variable logger to log all the possible ...
by Desmanto
20 Aug 2020 07:48
Forum: User Help / Bug Reports
Topic: Notifications on Screen - Variables Option
Replies: 4
Views: 23654

Re: Notifications on Screen - Variables Option

At any element editing, tap 3 dot menu (top right) > Select Variable. Tap any variable exist until that point of execution to copy the variable name to the clipboard. You can then paste it anywhere. In case of script/expression type element, variable names are copied without curly braces (as this is...
by Desmanto
17 Aug 2020 07:36
Forum: User Help / Bug Reports
Topic: WhatsApp number
Replies: 1
Views: 15223

Re: WhatsApp number

If both branch are doing the same thing, only differ in the url, you can combine them to single branch, rather than 2 or more branches. In the second expressions, use only one expression. Then put the code if(length(text) == 10 OR length(text) == 13) { if(length(text) == 10) text = "+91" + text; //t...