Search found 100 matches

by yogi108
30 Jan 2020 21:56
Forum: User Help / Bug Reports
Topic: Anrufer Ankündigung durch Sprache
Replies: 15
Views: 28856

Re: Anrufer Ankündigung durch Sprache

Oh, I don't get the exact meaning at your first post. Turns out the problem only happen after booting. This seems to be a problem that your TTS service is not starting after boot. Maybe you can check at the TTS setting. Some ROM have the capability to limit or disable some startup app. You need to ...
by yogi108
29 Jan 2020 08:52
Forum: User Help / Bug Reports
Topic: Anrufer Ankündigung durch Sprache
Replies: 15
Views: 28856

Re: Anrufer Ankündigung durch Sprache

@yogi108 : What TTS do you use? Embedded or Network? I use VocalizerEx2, Embedded (offline). Working most of the time and once in a while will error when using my speech project flow. Can't you try other TTS engine to see if there is problem? Or maybe different language. Exception won't work here, ...
by yogi108
26 Jan 2020 11:19
Forum: User Help / Bug Reports
Topic: Anrufer Ankündigung durch Sprache
Replies: 15
Views: 28856

Re: Anrufer Ankündigung durch Sprache

Hi, I've the same problem at Huawei P20, 9. 0 I tried the additionally uninstall ADB of Power Genius. After restarting the phone, no effect. In AM there is a workaround for the speech output, if I check Or uncheck it, it works for a while. If I stop AM and start it again it is possible that it works...
by yogi108
04 Jan 2020 14:28
Forum: User Help / Bug Reports
Topic: Bluetooth wants confirmation
Replies: 7
Views: 14899

Re: Bluetooth wants confirmation

Thanks again for your valuable instructions. I did the ADB and your flow and it worked as described, non root. I found 2 value pairs, Bluetooth_on and is_bt_discoverable_timing with values 0 and 1. Tried to change the system settings with these values, nothing happened. I found a workaround for my n...
by yogi108
02 Jan 2020 21:54
Forum: User Help / Bug Reports
Topic: Bluetooth wants confirmation
Replies: 7
Views: 14899

Re: Bluetooth wants confirmation

Even if the last post is done over 1 year ago:
I have now the same problem using Huawei P20 9.x
Permission dialog for Bluetooth on,
someone found a solution?
Regards,
Fritz

Ps: also for Bluetooth off...
by yogi108
06 Jun 2019 16:04
Forum: User Help / Bug Reports
Topic: word wrap after every comma in a text ?
Replies: 3
Views: 9168

Re: word wrap after every comma in a text ?

Hi,

You can use something like this:
search for ', ' (comma and space, if no space remove it)
replace with newline '\n'
txt=replaceAll('word word word, word word word, word word word', '(?sm)(, )', '\n');
Hope it helps,
Regards
by yogi108
26 May 2019 13:00
Forum: User Help / Bug Reports
Topic: Simple view of textfile
Replies: 0
Views: 10345

Simple view of textfile

Hi,

Is there an easy way to show a predefined textfile from
a flow with onboard action, scrolling the content?
Or to show the file via intent with mixplorer?

Thanks,
Regards

Edit:
I managed it with 'start activity' with mixplorer, see screenshot:
Screenshot_20190526-173554~01.png
Screenshot start activity mixplorer htmlviewer
Screenshot_20190526-173554~01.png (157.56 KiB) Viewed 10334 times
by yogi108
22 May 2019 11:22
Forum: User Help / Bug Reports
Topic: Maps and JSON tofile fromfile
Replies: 3
Views: 8892

Re: Maps and JSON tofile fromfile

Hi,

It seems to be the 2nd solution I prefer.

Thanks a lot,
Regards

[edit]
after some tests I am at the 1st solution now, got it working :-)
by yogi108
22 May 2019 07:02
Forum: User Help / Bug Reports
Topic: Maps and JSON tofile fromfile
Replies: 3
Views: 8892

Maps and JSON tofile fromfile

Hi, I am at a point to store some data and like to use JSON format, combined with maps into a file. The flow creates the map: cMap=newMapFromValues("triggertime",triggertime,"name","Martin","phone","+486145558","info","Info"); js=toJSON(cMap); The action stores the variable js into the file, all OK....