Search found 281 matches

by Rafi4
12 Aug 2020 04:12
Forum: User Help / Bug Reports
Topic: The End of Automagic
Replies: 54
Views: 4473392

Re: The End of Automagic

Hi Martin
Thanks a lot for your creation and hard work for Automagic.
I have never think that is my device without Automagic ?
Answer is no.
We ( Automagic users ) hope that day will be come soon that Automagic will available in play store again.

From record4
by Rafi4
24 Jul 2020 16:46
Forum: User Help / Bug Reports
Topic: sort(list, casesensitive, natural)
Replies: 2
Views: 10187

sort(list, casesensitive, natural)

Hi all
As the title says how can i sort a list casesensitive ? What is the use of the casesensitive in sort list?

Thanks in advance from from record4
by Rafi4
17 Jul 2020 03:00
Forum: User Help / Bug Reports
Topic: Copy text
Replies: 6
Views: 18456

Re: Copy text

Hi akt Use show control ui infos action to get Example as below for your understanding. text = getTextById("com.android.chrome:id/url_bar"); Text contains the desired address. Trigger = app task started (app name chrome) Action = control ui script as sleep (5000); text = getTextById("com.android.chr...
by Rafi4
15 Jul 2020 08:16
Forum: User Help / Bug Reports
Topic: Copy text
Replies: 6
Views: 18456

Re: Copy text

Hi akt
Use control ui action to get text. Use control ui infos action to know the id of the name and address. Any doubts? Please post.

from record4
by Rafi4
25 Jun 2020 05:21
Forum: User Help / Bug Reports
Topic: Display State Off Trigger Doesn't Work as Expected
Replies: 2
Views: 11371

Re: Display State Off Trigger Doesn't Work as Expected

Hi vertigo
Use trigger General Broadcast: and select action
In general broadcast android.intent.action.SCREEN_OFF.
I hope this works.

From record4
by Rafi4
24 Jun 2020 06:20
Forum: Flow Sharing Area
Topic: Enabled flows list
Replies: 14
Views: 55243

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 findex = indexOf(stdout, " <flow type="); ftext = substring(stdout, findex); //the long regex for flow names = findAll(ftext, '<name>(.*)</name>\\r\\n',...
by Rafi4
23 Jun 2020 21:58
Forum: Flow Sharing Area
Topic: Enabled flows list
Replies: 14
Views: 55243

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.

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);
From record4
by Rafi4
23 Jun 2020 00:23
Forum: User Help / Bug Reports
Topic: Delete files external storage (java)
Replies: 0
Views: 16596

Delete files external storage (java)

Hi anuraag and all Below script is deleting files in internal storage only. How can I delete files in external storage(sd card)? Any video tutorials are available in youtube? Thanks in advance from record4 file = callJavaConstructor("java.io.File", "File(java.lang.String)", "/storage/extSdCard/Wall ...
by Rafi4
23 Jun 2020 00:22
Forum: User Help / Bug Reports
Topic: Delete files external storage (java)
Replies: 0
Views: 14767

Delete files external storage (java)

Hi anuraag and all
Below script is deleting files in internal storage only. How can I delete files in external storage(sd card)?

Code: Select all

file = callJavaConstructor("java.io.File", "File(java.lang.String)", "/storage/extSdCard/Wall papers/rMO--jHdH3Q.jpg");
callJavaMethod(file, "java.io.File", "delete()")
by Rafi4
02 Jun 2020 00:47
Forum: User Help / Bug Reports
Topic: Device slow when data enabled
Replies: 4
Views: 24176

Re: Device slow when data enabled

Hi Martin
I have observed that input dialog (single choice) , Samsung keyboard actions ,device animation and plugin actions are getting slow. Developer options are disabled.

from record4