Search found 94 matches

by jassing
22 Dec 2019 11:24
Forum: User Help / Bug Reports
Topic: enable autorotate on certain apps; how would this be done?
Replies: 5
Views: 11130

Re: enable autorotate on certain apps; how would this be done?

Here is a more complete example flow...
Works with excel & sheets on my moto g6
Adjust method as needed.
by jassing
22 Dec 2019 04:21
Forum: User Help / Bug Reports
Topic: Sync directory script
Replies: 9
Views: 18972

Re: Sync directory script

What about using TeamViewer?
by jassing
21 Dec 2019 16:35
Forum: User Help / Bug Reports
Topic: enable autorotate on certain apps; how would this be done?
Replies: 5
Views: 11130

Re: enable autorotate on certain apps; how would this be done?

You enabled the script?
Try switching method to usage stats...
by jassing
21 Dec 2019 16:24
Forum: User Help / Bug Reports
Topic: Hash() documentation
Replies: 2
Views: 7435

Re: Hash() documentation

Thank you, that is helpful.
by jassing
20 Dec 2019 19:24
Forum: Flow Sharing Area
Topic: SQLite for Automagic
Replies: 14
Views: 43447

Re: SQLite for Automagic

VitPMir wrote:
20 Dec 2019 13:42
Corrected something
flow_group_SQLite_for_Automagic_20191220_173803.xml
Works perfectly here! Thank you for sharing your work!
by jassing
20 Dec 2019 12:59
Forum: Flow Sharing Area
Topic: SQLite for Automagic
Replies: 14
Views: 43447

Re: SQLite for Automagic

Awesome work!

But... The insert routine does not work for me...

Great work, much appreciated!!
by jassing
20 Dec 2019 02:49
Forum: User Help / Bug Reports
Topic: cant get this filter to work, which removes notifications that DON’T contain certain keywords
Replies: 7
Views: 14902

Re: cant get this filter to work, which removes notifications that DON’T contain certain keywords

You don't have a trigger specified...
This is utterly untested but should get you going in the right direction... (I don't have Twitter, so you need to fill in that field)
by jassing
19 Dec 2019 22:42
Forum: User Help / Bug Reports
Topic: How to asign same value to different vars
Replies: 10
Views: 19540

Re: How to asign same value to different vars

We all learn at some point... I prefer, and it is a personal preference, and find it more readable like this: if( global_app_count_map == null ) { global_app_count_map = newMap() ; } global_app_count_map[ package_name ] = convertNull(global_app_count_map[ package_name ], 0) + 1; Rather than using a ...
by jassing
19 Dec 2019 18:27
Forum: User Help / Bug Reports
Topic: How to asign same value to different vars
Replies: 10
Views: 19540

Re: How to asign same value to different vars

global_app_count_map is null... You're checking if a map element is null...