I hope this is right Desmanto.
From the looks of it, emojis and flows that start with "." Are a bit inconsistant.
http://automagic4android.com/flow.php?i ... 5f77fb813d
Enabled flows list
Moderator: Martin
Re: Enabled flows list
Every life altering decision you have made, has lead to you reading this.
Re: Enabled flows list
@Rafi4 : Me too. Just double check the flow list and compare if you miss any.
@Yam : You miss one space a the findex.
It is not the "." or emoji that is missing, it is the first flow in the list. When you give .flowname, this flow will be at the first when saved alphabetically. While your findex now start at the second space, it won't catch the regex for the first flow.
@Yam : You miss one space a the findex.
Code: Select all
findex = indexOf(stdout, " <flow type="); ftext = substring(stdout, findex); //your script miss one space
findex = indexOf(stdout, " <flow type="); ftext = substring(stdout, findex); //this is the correct one
Index of Automagic useful thread List of my other useful posts (and others')
Xiaomi Redmi Note 5 (whyred), AOSP Extended v6.7 build 20200310 Official, Android Pie 9.0, Rooted.
Xiaomi Redmi Note 5 (whyred), AOSP Extended v6.7 build 20200310 Official, Android Pie 9.0, Rooted.
Re: Enabled flows list
Wow, that fixed it...
Cheers that's amazing!
Cheers that's amazing!
Every life altering decision you have made, has lead to you reading this.
Re: Enabled flows list
Hi Desmanto
In this below script i am getting all flow names. You can edit your script to get all values.
From record4
In this below script i am getting all flow names. You can edit your script to get all values.
Code: Select all
findex = indexOf(stdout, " <flow type=");
ftext = substring(stdout, findex);
//the long regex for flow
find = findAll(ftext, '<name>(.*)</name>\\r\\n', true);
No.1 Automation app in play store Automagic Premium
Samsung Galaxy j2 non rooted.
Android 5.1.1
Samsung Galaxy j2 non rooted.
Android 5.1.1
Re: Enabled flows list
Hi all
I have got the accurate solution as below.
Rename the group which was Ungrouped. Under Ungrouped flows ignored. I think that this is perfect
From record4
I have got the accurate solution as below.
Rename the group which was Ungrouped. Under Ungrouped flows ignored. I think that this is perfect
Code: Select all
findex = indexOf(stdout, " <flow type=");
ftext = substring(stdout, findex);
//the long regex for flow
names = findAll(ftext, '<name>(.*)</name>\\r\\n', true);
groups = findAll(ftext, trim ('<group>(.*)</group>'), true);
flow_status = findAll(ftext, '<enabled>(true|false)</enabled>', true);
No.1 Automation app in play store Automagic Premium
Samsung Galaxy j2 non rooted.
Android 5.1.1
Samsung Galaxy j2 non rooted.
Android 5.1.1