Make your OS talk.

11:38 AM Edit This 0 Comments »
Hey! found this script(vbscript) that asks you to enter a word or a sentence in an inputbox and later the system will speak out those words. This works fine on Windows XP, but never tried it on a Vista machine. Try it:-

Dim msg, sapi
msg=InputBox("Enter your text","Talk it")
Set sapi=CreateObject("sapi.spvoice")
sapi.Speak msg

Just copy and paste the above code in notepad. Save it with any name but an extension .vbs
say for example speak.vbs.
After saving open it and write anything in the inputbox and press the OK button.
And Listen!!

0 comments: