Search found 2709 matches
- 26 Aug 2020 06:50
- Forum: User Help / Bug Reports
- Topic: Flow execution policy maximum
- Replies: 2
- Views: 17944
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 ...
- 25 Aug 2020 17:54
- Forum: User Help / Bug Reports
- Topic: The End of Automagic
- Replies: 54
- Views: 4599390
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...
- 23 Aug 2020 05:47
- Forum: User Help / Bug Reports
- Topic: Something very weird going on here!
- Replies: 6
- Views: 29910
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, ...
- 23 Aug 2020 05:34
- Forum: User Help / Bug Reports
- Topic: Help for Functions
- Replies: 3
- Views: 23256
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
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
- 22 Aug 2020 16:52
- Forum: General
- Topic: Will Android 11 break Automagic?
- Replies: 20
- Views: 110506
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).
- 22 Aug 2020 16:51
- Forum: User Help / Bug Reports
- Topic: Trigger Launcher Trigger in v1.38
- Replies: 4
- Views: 26583
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.
Bixby can only "launch" app, not shortcut. Hence, this trigger is created to accomodate that.
- 20 Aug 2020 08:46
- Forum: User Help / Bug Reports
- Topic: UI Event Trigger: Source_Class_Name
- Replies: 6
- Views: 33678
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, ...
- 20 Aug 2020 08:10
- Forum: User Help / Bug Reports
- Topic: UI Event Trigger: Source_Class_Name
- Replies: 6
- Views: 33678
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 ...
- 20 Aug 2020 07:48
- Forum: User Help / Bug Reports
- Topic: Notifications on Screen - Variables Option
- Replies: 4
- Views: 25283
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...
- 17 Aug 2020 07:36
- Forum: User Help / Bug Reports
- Topic: WhatsApp number
- Replies: 1
- Views: 16478
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...