Here is a very simple VBScript to convert your text into audio. Type the following code in notepad:
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.
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.