Search found 17 matches

by Helios
09 Aug 2020 11:51
Forum: User Help / Bug Reports
Topic: The End of Automagic
Replies: 54
Views: 4472383

Re: The End of Automagic

I wish you all the best! Thank you for developing automagic. Btw. maybe once you have the time, you could consider making automagic's source code available, so that interested people could fork it. I would appreciate it. AFAIK, there is no open-source automation system available for Android. This co...
by Helios
15 Oct 2019 12:43
Forum: Flow Sharing Area
Topic: Auto Dark Mode (Android 10)
Replies: 3
Views: 15502

Re: Auto Dark Mode (Android 10)

Thank you!
Very interesting.

Could you provide some hint?
How did you find out which Java calls must be executed for this purpose?
by Helios
05 Dec 2018 10:53
Forum: User Help / Bug Reports
Topic: global variable
Replies: 4
Views: 14218

Re: global variable

Maybe it is notable that changing a List or Map by, for example, adding or altering elements, does not trigger the flow.
It is only triggered if a new value is assigned to that global variable.
by Helios
29 Nov 2018 14:43
Forum: Feature Requests
Topic: Built-in flow stack variable
Replies: 3
Views: 13618

Re: Built-in flow stack variable

Hi, you do not necessarily need to use a global var (global_prev_flow). Simply use prev_flow (non global var). https://automagic4android.com/en/help/components-actions#action_execute_flows The executed flow will inherit the execution context with all variables of the parent flow. Although this is no...
by Helios
09 Nov 2018 21:37
Forum: User Help / Bug Reports
Topic: Where is UNDO ?
Replies: 7
Views: 17232

Re: Where is UNDO ?

As far as I could see, there are two types of undo 1) Undo in Flow View. This can be used, e.g. to undo movements of flow items or adding/removing of actions/conditions etc. 2) There is also an undo for Script Editing (Action: Script/UI Control, Condition: Expression). But this one is only visible i...
by Helios
08 Nov 2018 12:28
Forum: User Help / Bug Reports
Topic: Control UI Questions
Replies: 9
Views: 22760

Re: Control UI Questions

There is also

Code: Select all

getText("OK")
if no ID is available.
You could also do something like

Code: Select all

while(not click("OK") AND loop < 100) {
  sleep(1000);
  loop = loop + 1;
}
because all

Code: Select all

click(), clickById()
operations return a boolean whether the click was successfull or not.
by Helios
05 Nov 2018 10:40
Forum: User Help / Bug Reports
Topic: Announce time every 5 minutes
Replies: 4
Views: 13785

Re: Announce time every 5 minutes

You probably want to have a look into this trigger: https://automagic4android.com/en/help/components-triggers#trigger_periodic_timer You can configure it to run every 5min. The connect this trigger to the speech output action as indicated by digitalstone. The main problem with the "sleep+loop" appro...
by Helios
01 Nov 2018 18:30
Forum: Feature Requests
Topic: Create and Attach Tags/Labels to Flows
Replies: 5
Views: 18359

Re: Marking flows based on progress?

Another approach for this would be to give those Flows a specific tag in the name, e.g. WIP.
You can then use the search to find these flows.
If you use some nice emoji - something like " :!: " - you just need one symbol to search for ;)
But yes, it's another workaround...
by Helios
30 Oct 2018 22:32
Forum: General
Topic: Random wallpaper
Replies: 11
Views: 32377

Re: Random wallpaper

Hi, maybe you could do the following. Start with your trigger. Connect it to a Script action: wallpapers = newList("Name of wallpaper 1.", "Name of wallpaper 2.", "Name of wallpaper 3.", ...); random_wallpaper = getRandomElement(wallpapers); Then use your action (Set Live Wallpaper), but use {random...
by Helios
30 Oct 2018 08:06
Forum: User Help / Bug Reports
Topic: Please help with Location Based WiFi On/Off
Replies: 4
Views: 12983

Re: Please help with Location Based WiFi On/Off

Hi,

how do you detect your location? Which location mode do you use?
If it is Energy Saving, only Wifi is used to locate you. Thus once you turn off Wifi, you location cannot be gathered anymore.