Search found 4468 matches

by Martin
12 Feb 2013 06:35
Forum: User Help / Bug Reports
Topic: Herunterfahren Shutdown
Replies: 9
Views: 27798

Re: Herunterfahren Shutdown

Habe auch unter: Verwalten - Einstellungen die Rootfunktion aktivieren eingeschaltet. Diese schalten sich aber wieder von alleine aus. Hallo Seppel24 Wenn das Gerät gerootet ist, müssten sich die Root Funktionen eigentlich einschalten lassen (und eingeschaltet bleiben). Kannst du "Debug Logging" ei...
by Martin
11 Feb 2013 09:33
Forum: User Help / Bug Reports
Topic: copy parts of a flow possible?
Replies: 1
Views: 8110

Re: copy parts of a flow possible?

It is not possible to partially copy a flow to another flow. I usually copy the entire flow when I want to do some experiments (flow list -> long-touch a flow -> copy) and then either discard the new flow or replace the old flow with the new one. Another option that works well is to remove the conne...
by Martin
07 Feb 2013 15:50
Forum: User Help / Bug Reports
Topic: operation with files
Replies: 2
Views: 10835

Re: operation with files

1) You can read a text file into a variable with the action Init Variable Text File: test.txt to file_text . There are several functions you can use in a script to process the text. Following functions might be useful: indexOf , lastIndexOf , length , substring , left , right , startsWith , endsWith...
by Martin
07 Feb 2013 09:30
Forum: Feature Requests
Topic: Set Desk UI Mode
Replies: 1
Views: 8633

Re: Set Desk UI Mode

A function to switch to desk UI mode is not available in the Android SDK. The internal functions used to switch to desk UI mode seem to require system permissions not available to Automagic.
by Martin
07 Feb 2013 09:21
Forum: Feature Requests
Topic: Mount/Unmount SD Card
Replies: 3
Views: 13949

Re: Mount/Unmount SD Card

Mounting/unmounting of sd cards seems not to be possible with the official Android SDK. Perhaps you can achieve this with an Execute Root Command umount /path or with busybox.
A trigger Storage Media Event to react to different events already exists.
by Martin
07 Feb 2013 08:55
Forum: User Help / Bug Reports
Topic: why is a sended SMS not in the "send"-folder ?
Replies: 3
Views: 12710

Re: why is a sended SMS not in the "send"-folder ?

Storing the sent SMS is not possible yet since the SMS database is not an official part of the Android SDK and the database might be different on different device types.
We will probably add support for this in a future version.
by Martin
04 Feb 2013 16:38
Forum: Feature Requests
Topic: Flow Group Enable and Disable
Replies: 5
Views: 14853

Re: Flow Group Enable and Disable

You can use an action Set Flow State to enable/disable a comma separated list of flows. The action also supports patterns like Flow* to enable a list of flows with some common part in the name.
Changing the state of a flow-group is currently not possible.
by Martin
04 Feb 2013 16:31
Forum: User Help / Bug Reports
Topic: reading topic "my calendar"
Replies: 4
Views: 14860

Re: reading topic "my calendar"

There is no action to read all calendar entries for a day. Only possibility is to use a condition Google Calendar Event and to check whether an event is currently ongoing (+/- some offsets) when you get an incoming call.
by Martin
04 Feb 2013 16:26
Forum: User Help / Bug Reports
Topic: Need help on "Expression" with {incoming_number}
Replies: 2
Views: 10533

Re: Need help on "Expression" with {incoming_number}

You can use following expression in a condition Expression (no need for the curly braces): incoming_number=="1234" The number has to exactly match the value in the incoming_number variable. It is often useful to add a condition Debug Dialog in the flow to show a dialog with all variables and the val...
by Martin
04 Feb 2013 11:21
Forum: User Help / Bug Reports
Topic: reading topic "my calendar"
Replies: 4
Views: 14860

Re: reading topic "my calendar"

I don't understand your question. Do you want to create a new event in one of your calendars?
There is no built-in action to do this but you can try the Start Activity action as described in this post.