Search found 37 matches

by mcyber
12 Nov 2015 12:16
Forum: User Help / Bug Reports
Topic: Location by wifi ssid
Replies: 9
Views: 19147

Re: Location by wifi ssid

I want to execute an action if a specific SSID is detected (only detected, not connected). Which trigger I must choose ? Otherwise how I can execute an action by location use only wifi? (no gps, no phone cells) With "phone cell GSM" trigger I have problem every 1-2 month; I often reconfigure the nu...
by mcyber
20 Apr 2015 13:22
Forum: Feature Requests
Topic: Compile flows to separate APKs
Replies: 31
Views: 101616

Re: Compile flows to separate APKs

+1
by mcyber
20 Mar 2015 09:21
Forum: Feature Requests
Topic: Debug option
Replies: 9
Views: 22944

Re: Debug option

+1
by mcyber
17 Mar 2015 09:34
Forum: General
Topic: Calling flow with param(s)
Replies: 4
Views: 15603

Re: Calling flow with param(s)

I don't like to make 2 action to call flow and pass param. So here is workaround how to pass param to called flow with just single command: Create action: Execute flow as Flow Pattern List put: {a='value1'; b='value2'; f='FlowA'} This will call flow named FlowA, inside that flow you can read local ...
by mcyber
16 Mar 2015 15:28
Forum: General
Topic: Calling flow with param(s)
Replies: 4
Views: 15603

Re: Calling flow with param(s)

I don't like to make 2 action to call flow and pass param. So here is workaround how to pass param to called flow with just single command: Create action: Execute flow as Flow Pattern List put: {a='value1'; b='value2'; f='FlowA'} This will call flow named FlowA, inside that flow you can read local ...
by mcyber
12 Mar 2015 14:51
Forum: Feature Requests
Topic: Static variables
Replies: 6
Views: 19419

Re: Static variables

tschaedl wrote:-1

global_variables are good enough. Don't make it too complicated.
Yes.
by mcyber
18 Dec 2014 09:27
Forum: General
Topic: How to get rid of "Automagic service is running"
Replies: 5
Views: 18955

Re: How to get rid of "Automagic service is running"

I would love to learn how to get rid of the "Automagic service is running" notification in the notification screen. I run Automagic 24/7, so the notification isn't helpful and just takes up screen space. Is there a way to suppress this or remove it? Thanks! David Yes: menu→manage→preferences→show s...
by mcyber
26 Nov 2014 14:49
Forum: User Help / Bug Reports
Topic: Comparing a value(the current time) to a list of values
Replies: 5
Views: 13735

Re: Comparing a value(the current time) to a list of values

As suggested by Bushmills, probably a sorted list (ascending) is the best structure available in AM for the purpose, and the binary search an elegant solution, with the data structures available in AM. The shell solution is even better. Another strategy, more "brutal", is to cycle through the sorted...
by mcyber
18 Nov 2014 23:06
Forum: User Help / Bug Reports
Topic: Checking if a variable is equal to either one of two values
Replies: 9
Views: 20549

Re: Checking if a variable is equal to either one of two val

Bushmills wrote:in case of many items to compare against, this may be an alternative, put into a Condition:

Code: Select all

containsElement(newList("sunny", "clear", "foggy", "hailing"),forecast)
..............................
Very elegant and inspiring solution.
by mcyber
13 Nov 2014 13:28
Forum: Feature Requests
Topic: Export global variables
Replies: 15
Views: 39076

Re: Export global variables

One example are nested menus. You need a single flow to manage all the menus, from the topmost to the last: the only thing you need to manage is a list of lists, or a map of maps, containing text for the options, some paramaters to initialize the menu interface, such as a default value, and some da...