Thursday, February 10, 2011

Create your own text to speak in vbs

Posted by Hokomart
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:

Post a Comment