After having some rather nasty dental work done (four rather complex wisdom teeth removed) I have been left unable to speak for a while. Finding this to be annoying I thought to myself that I have a Windows laptop that has TTS (text to speech) built in.
A few lines of VBS later and I have a magic speaking machine which has proved very helpful:
c:\scripts\Say.vbs
With a nice little shortcut running it in cscriptCode:set s = CreateObject("SAPI.SpVoice")
do While 1
Voice = inputbox("what to say")
wscript.echo "> " & Voice
s.Speak Voice
loop
Not pretty at all but it says what you type when you hit enter and outputs a log to the command window in case the TT version is indecipherable. I changed the font size in the command window up to 16 and it seems to work really well for the simple hack that it is.Code:C:\Windows\System32\cscript.exe /NoLogo c:\scripts\say.vbs
I might make it better but I don't think I'd be mute for long so it serves my current needs. Just thought it might help someone some day.

