[VBScript] Type your text and convert it to speech

Here is a very simple VBScript to convert your text into audio. Type the following code in notepad:

    Dim m,s
    m=InputBox("Enter your text","Say It!")
    Set s=CreateObject("sapi.spvoice")
    s.Speak m

Save this file as "txtspeech.vbs" (with quotes) and double click to run. Type your text and click OK. 



It will be heard as audio.