Search found 179 matches

by Micky Micky
31 Jul 2020 20:24
Forum: User Help / Bug Reports
Topic: how to limit the number of times a flow can be executed in a certain range of time
Replies: 5
Views: 16353

Re: how to limit the number of times a flow can be executed in a certain range of time

Hello

Yeah, I see your point. Your method is quite efficient and contained in the flow. Mine would need two switches and that's messy.

Many thanks

Micky
by Micky Micky
30 Jul 2020 19:55
Forum: User Help / Bug Reports
Topic: Going abroad trigger
Replies: 3
Views: 11397

Going abroad trigger

Hello, What system setting changes when going abroad? I want to disable flows when in another country., so I want a trigger that's definitely due to being in a different country. There's many country related settings to choose from. Some I think are to do with my language settings. I think it's 'cou...
by Micky Micky
30 Jul 2020 17:52
Forum: User Help / Bug Reports
Topic: how to limit the number of times a flow can be executed in a certain range of time
Replies: 5
Views: 16353

Re: how to limit the number of times a flow can be executed in a certain range of time

Hello

You can use TRIGGER Global variable date/time

Add a ACTION after to change the variable. For example, add 20mins. You have to use UNIX time.

I sometimes use a random generator to add between, for example, 10mins and 30mins.

Sleep 10mins is not a good idea IMO.

Hope this helps

Micky
by Micky Micky
25 Jul 2020 18:40
Forum: User Help / Bug Reports
Topic: Data Disconnected
Replies: 2
Views: 7721

Re: Data Disconnected

Hello This flow will show mobile data off or on if you toggle your connection. I don't know if it will work if the signal drops out. You need to disconnect wifi. The trigger is every minute. Thanks for posting the question as this is an issue I should address for the many dead spots I enter daily. M...
by Micky Micky
25 Jul 2020 18:05
Forum: User Help / Bug Reports
Topic: Proximity Sensor on Galaxy S20+
Replies: 17
Views: 36478

Re: Proximity Sensor on Galaxy S20+

Hello

I presume this works on all Samsung phones.

*#0*# entered on the keypad brings up Samsung test menu. I clicked SENSOR and there's no proximity sensor listed on my S10.

Note: press the back key twice to exit this menu.

That LED is so small, how can it be a sensor?

Micky
by Micky Micky
22 Jul 2020 21:05
Forum: User Help / Bug Reports
Topic: Unicode decimal code 
 removal
Replies: 9
Views: 19636

Re: Unicode decimal code 
 removal

Hello,

It's working fine. It's definitely not too wide a scope.

findAll without regex has replaced loops in other flows. It's made a big difference.

Thanks for enlightening me!

Micky
by Micky Micky
22 Jul 2020 20:44
Forum: User Help / Bug Reports
Topic: Proximity Sensor on Galaxy S20+
Replies: 17
Views: 36478

Re: Proximity Sensor on Galaxy S20+

It seems that you have to enable it.

How? I don't know.

Micky
by Micky Micky
22 Jul 2020 20:42
Forum: User Help / Bug Reports
Topic: Proximity Sensor on Galaxy S20+
Replies: 17
Views: 36478

Re: Proximity Sensor on Galaxy S20+

The Samsung Galaxy S20+ 5G / Galaxy S20 Ultra 5G features an Infinity O display that minimizes the bezel, so the proximity sensor is now located at the top of the display. ... Communication apps such as Hangouts and WhatsApp may also enable the proximity sensor, and cause the blinking light to appear.
by Micky Micky
22 Jul 2020 20:37
Forum: User Help / Bug Reports
Topic: Proximity Sensor on Galaxy S20+
Replies: 17
Views: 36478

Re: Proximity Sensor on Galaxy S20+

In 2019's Galaxy S10, Samsung engineers were able to install the proximity and the ambient light sensors behind the display. Users were initially confused a little to notice a blinking white pixel near the battery indicator. It was later confirmed to be the under-display proximity sensor through.
by Micky Micky
20 Jul 2020 20:30
Forum: User Help / Bug Reports
Topic: Unicode decimal code 
 removal
Replies: 9
Views: 19636

Re: Unicode decimal code 
 removal

Code: Select all

find = findAll(response, 'data-id="\\d+">\n      <div class="dir-ltr" dir="ltr">(?s:(.*?))<', true);
This got all the tweets.

It seems thst 'data-id' is unique to the tweets.

Still haven't learned regex though.

Micky