Exemplo n.º 1
0
 public void Speak()
 {
     tts.Speak(buttonClicked.text, (string msg) =>
     {
         tts.ShowToast(msg);
     });
 }
Exemplo n.º 2
0
 public void Speak()
 {
     tts.Speak("¡Hola, me llamo Sergio! Un placer.", (string msg) =>
     {
         tts.ShowToast(msg);
     });
 }
Exemplo n.º 3
0
 public void Speak()
 {
     tts.Speak("hello mr hosein porazar kasin", (string msg) =>
     {
         tts.ShowToast(msg);
     });
 }
Exemplo n.º 4
0
 public void Speak()
 {
     tts.Speak(QPicQueText.text, (string msg) =>
     {
         tts.ShowToast(msg);
     });
 }
Exemplo n.º 5
0
 /**
  * Handler for a speech event
  */
 public void GenerateSpeech(Text textUIComponent, string textToSay)
 {
     tts.Speak(textToSay, (string msg) =>
     {
         tts.ShowToast(msg);
     });
 }