renpy/lib/py2-windows-i686/say.vbs

16 lines
287 B
Plaintext
Raw Normal View History

2023-01-18 22:13:55 +00:00
Text = WScript.Arguments(0)
Speaker = WScript.Arguments(1)
Set s = CreateObject("SAPI.SpVoice")
For Each Voice In s.GetVoices
I = I + 1
If InStr(Voice.GetDescription, Speaker) > 0 Then
Set s.Voice = s.GetVoices.Item(I-1)
Exit For
End If
Next
s.Speak Text