Thursday, September 27, 2018

How to Make Your Computer Speak Whatever You Type


Create your own text to speech converter software to make your computer speak whatever you type.

Step1 - Open the Notepad.

Step2 - Copy the code given below and paste it to notepad.

Dim message, sapi
message=InputBox("What do you want me to say?","Speak to Me")
Set sapi=CreateObject("sapi.spvoice")
sapi.Speak message

Step3 - Save the file with any name with an extension .vbs

Step4 - Run the file, type anything you want in the textbox and press OK and enjoy

No comments:

Post a Comment