|
Text to Speech Converter
This is a small utility by which you can convert typed text into voice. This utility is run on windows operating system environment.
To create this utility follow following steps :-
1. Open Notepad and paste following code.
Dim msg, sapi
msg=InputBox("Enter your text :","Text-To-Speech Converter")
Set sapi=CreateObject("sapi.spvoice")
sapi.Speak msg
2. Now save the file text2speech.vbs and close notepad.
3. Execute the file.
|