Create your own text to speak in vbs

Posted by Unknown on Wednesday, November 17, 2010

There are lot of software use to speak the text written on them.But you can create your own manually in vbs script…..
copy below text and paste it in notepad.Then save it as .vbs extension It will work


Dim msg, sapi




msg=InputBox(“Enter your text”,”My text to speak”)
Set sapi=CreateObject(“sapi.spvoice”)
sapi.Speak msg
enjoy……

{ 0 comments... read them below or add one }

Post a Comment