BidVertiser

Google
 

Sunday, December 14, 2008

Talking Script......!

Have you ever come across any of those talking text softwares in which you enter the text you desire and the software enables that tex to be read out? If you have or if you have not, now is your chance to make one for yourself! Just follow the steps gicen below and you will get your own Talkin Script software......

Step 1. Open a Notepad window and in it paste the following code:

Dim msg, sapi
msg=InputBox("Enter your text","Talk it")
Set sapi=CreateObject("sapi.spvoice")
sapi.Speak msg


Step 2. Now Save the file as tts.vbs or any other name you want but just remember that it must end with .vbs extension. It will create a VBScript File. Be sure that 'All files' is selected on 'Save as type'.


Step 3. After you open the file you will find that there is a text box. Enter your desired text here and press the OK button. After the OK button is pressed the text you entered will be read out to you.


Check it out and let me know if it worked.....!