I want to save the spoken words of a TTS EditText to a file anywhere - Device, Cloud or sharing via FB.
Is that simply possible ?
Here is the depending part of the code:
Is that simply possible ?
Here is the depending part of the code:
B4X:
Sub btnSpeak_Click
If EditText1.Text.Length > 0 Then
TTS1.Speak(EditText1.Text, True)
EditText1.SelectAll
End If
End Sub