Create Your Own Text 2 Speak


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