Search found 371 matches

by anuraag
02 Mar 2020 00:58
Forum: User Help / Bug Reports
Topic: select a Whatsapp contact
Replies: 7
Views: 19780

Re: select a Whatsapp contact

flow_whatsapp_contacts_list_20200302_090551.xml
(4.44 KiB) Downloaded 1001 times
by anuraag
26 Feb 2020 00:06
Forum: General
Topic: Help with "send broadcast" / intent for Owntracks
Replies: 2
Views: 13076

Re: Help with "send broadcast" / intent for Owntracks

In Automagic are you using Start Service action?
by anuraag
26 Feb 2020 00:00
Forum: User Help / Bug Reports
Topic: How to make flow assign its name to global variable?
Replies: 1
Views: 7590

Re: How to make flow assign its name to global variable?

Whenever a flow is executed following three Variables are created.
flow_name
trigger
triggertime

So to assign global you can do like
global_flow_name = flow_name
by anuraag
25 Feb 2020 11:34
Forum: User Help / Bug Reports
Topic: Action Script fromJSON ,Value null error
Replies: 7
Views: 17001

Re: Action Script fromJSON ,Value null error

Attach debug dialog next to above script and check large_url starts with https://
by anuraag
25 Feb 2020 11:29
Forum: User Help / Bug Reports
Topic: Action Script fromJSON ,Value null error
Replies: 7
Views: 17001

Re: Action Script fromJSON ,Value null error

Don't use both use one

Code: Select all

data = fromJSON(response);
response = data["response"];
images = response["images"];
large_url = images["large"]["url"];
Or

Code: Select all

large_url = fromJSON(response)["response"]["images"]["large"]["url"] 
by anuraag
25 Feb 2020 10:56
Forum: User Help / Bug Reports
Topic: Action Script fromJSON ,Value null error
Replies: 7
Views: 17001

Re: Action Script fromJSON ,Value null error

data = fromJSON(response);
response = data["response"];
images = response["images"];
large_url = images["large"]["url"];

In one line
large_url = fromJSON(response)["response"]["images"]["large"]["url"]
by anuraag
24 Feb 2020 12:14
Forum: User Help / Bug Reports
Topic: Problem with copy any notification
Replies: 2
Views: 9400

Re: Problem with copy any notification

Use action script before using notification on Statusbar action if (startsWith(notification_text, content_title)) notification_text = substring(notification_text, length(content_title)); if (startsWith(notification_text, " ")) notification_text = substring(notification_text, 1); There is no way to c...
by anuraag
23 Feb 2020 11:41
Forum: Flow Sharing Area
Topic: Navigation Apps Auto turn on/off GPS
Replies: 63
Views: 242824

Re: Navigation Apps Auto turn on/off GPS

I have updated my flow to use GPS status event trigger to turn off gps and wifi scanning. Added a notification to tun off gps and wifi scanning when they are enabled. Enable all flows after import and modify set System Setting as per your device. http://automagic4android.com/forum/download/file.php?...
by anuraag
21 Feb 2020 12:35
Forum: Flow Sharing Area
Topic: Unsplash wallpaper
Replies: 14
Views: 56187

Re: Unsplash wallpaper

Files are stored at
/storage/emulated/0/Android/data/ch.gridvision.ppam.androidautomagic/files/unsplash
by anuraag
21 Feb 2020 07:46
Forum: User Help / Bug Reports
Topic: DIY-Actions/Triggers: Start Activity, General Broadcast, ...
Replies: 49
Views: 295509

Re: DIY-Actions/Triggers: Start Activity, General Broadcast, ...

KVN wrote:
21 Feb 2020 06:03
anuraag wrote:
21 Feb 2020 00:00
@KVN Try action
Update Media Database
Big Thank You - it is solve my Task :)

But i want know too how it solve use intent, please give example for 1 files...
Execute following flow. Select folder where .nomedia file exists.