Search found 2709 matches

by Desmanto
20 Jul 2020 07:01
Forum: User Help / Bug Reports
Topic: WhatsUp auto accept a call
Replies: 13
Views: 59490

Re: WhatsUp auto accept a call

@bobeurone : Yes. There are Send SMS action and Mail With Gmail (you need to grant permission to Automagic to send email on your behalf). TO send whatsapp message, you need Start Activity coupled with Control UI as shown here : https://automagic4android.com/forum/viewtopic.php?f=5&t=7211#p20298 Send...
by Desmanto
20 Jul 2020 07:00
Forum: User Help / Bug Reports
Topic: "Set Speakerphone State: On" makes flow fail
Replies: 19
Views: 60586

Re: "Set Speakerphone State: On" makes flow fail

Speakerphone sometimes doesn't work in certain ROM/Devices. In that case, you need to use Control UI to toggle the speakerphone. Look at my thread, viewtopic.php?t=6962 and scroll down to post 4 for Bluescre flow sharing. He modify it and use CUI instead.
by Desmanto
20 Jul 2020 06:33
Forum: User Help / Bug Reports
Topic: Unicode decimal code 
 removal
Replies: 9
Views: 19484

Re: Unicode decimal code 
 removal

If it is blank, means no match found. Need to check where it stop matching. I just tried here using your flow above, it still can found match. Different url might produce different result. You don't need indexOf(), substring() or any split(). Regex has done it for us, if it can match properly already.
by Desmanto
19 Jul 2020 15:30
Forum: User Help / Bug Reports
Topic: Proximity Sensor on Galaxy S20+
Replies: 17
Views: 36208

Re: Proximity Sensor on Galaxy S20+

As I already suspected. The new design of punch hole have somehow interfere with the way how proximity work. Some also report the same problem in tasker, so this is phone specific problem. It seems all these punch holes phone require new set of element to use the proximity sensor properly.
by Desmanto
19 Jul 2020 15:25
Forum: User Help / Bug Reports
Topic: Unicode decimal code 
 removal
Replies: 9
Views: 19484

Re: Unicode decimal code 
 removal

You can use regex to parse it in one line. I just copy the portion which have tweet-container into regex tester, and then replace the tweet id with \d+ and the text with (?s:(.*?)), which will capture the message including line feed. Then the next line replace the with blank, and trim to remov...
by Desmanto
19 Jul 2020 15:08
Forum: User Help / Bug Reports
Topic: Detect camera usage
Replies: 4
Views: 10696

Re: Detect camera usage

Your only choice left currently is to logcat in PC, not root required, but have to be plugged to PC during logcatting. Try to find if it generate broadcast. If you are lucky, then you can use that broadcast for the trigger. Rooting using magisk doesnt' break all app. I still use the app which are no...
by Desmanto
18 Jul 2020 16:43
Forum: User Help / Bug Reports
Topic: Open URL in private tab in Firefox
Replies: 2
Views: 8487

Re: Open URL in private tab in Firefox

Action Start Activity Action : android.intent.action.VIEW Data URI : https://www.google.com Explicit Component : Tick Package Name : org.mozilla.firefox Class Name : (leave blank) Extras : putBoolean("is_private_tab", true) I just know firefox support this kind of intent. Using Chrome, there is no w...
by Desmanto
18 Jul 2020 16:38
Forum: User Help / Bug Reports
Topic: Proximity Sensor on Galaxy S20+
Replies: 17
Views: 36208

Re: Proximity Sensor on Galaxy S20+

Open the flow and check you proximity action/trigger again. Try to cover and see value changes. The value might be different than your previous phone. Try to change the value and test it in the same flow. Samsung might also have additional permission or security layer which prevent Automagic from us...
by Desmanto
18 Jul 2020 16:36
Forum: User Help / Bug Reports
Topic: Help my gran!
Replies: 7
Views: 15827

Re: Help my gran!

@bobeurone : I have replied you in the other thread. It should be working fine. Or you can still use touchGesture()
by Desmanto
18 Jul 2020 16:33
Forum: User Help / Bug Reports
Topic: Copy text
Replies: 6
Views: 18484

Re: Copy text

@Akt : where is these text located? Inside app or a browser? If inside app, you can use Control UI as suggested by Rafi4. You cn check the tutorial here : https://automagic4android.com/forum/viewtopic.php?f=6&t=7320 But if it is from browser, most of the time, you can't use Control UI to get the tex...