Today I am with one more trick using Notepad in which computer will speak whatever you will type into the text box! We will create a simple visual basic script (.vbs) without using any other softwares or applications, just by using Notepad!
2. Copy and paste below code into it.
3. Save the file as "anyname.vbs". Here .vbs extension is necessary. Select "Save as type" as "All types". Hit Ok.
4. You should get the file as shown below.
5. Double click over it. Type any pronounceable text into text box and hit OK. System will pronounce the words you entered over there!
Make your computer talk what you type
Steps you have to perform
1. Open "Notepad".2. Copy and paste below code into it.
Dim message, sapi
message=InputBox("Hey, Hows you?","Visit FunWidTricks.Com")
Set sapi=CreateObject("sapi.spvoice")
sapi.Speak message
3. Save the file as "anyname.vbs". Here .vbs extension is necessary. Select "Save as type" as "All types". Hit Ok.
4. You should get the file as shown below.
5. Double click over it. Type any pronounceable text into text box and hit OK. System will pronounce the words you entered over there!