Drop Down MenusCSS Drop Down MenuPure CSS Dropdown Menu

Tuesday 27 August 2013

CONVERTING A TEXT INTO AUDIO

This would be interesting post where we will write a small code to convert any text into audio


Pls follow the below steps



1) Open Notepad , and copy/paste following code


Dim msg, sapi


msg=InputBox("Enter your text for conversion")

Set sapi=CreateObject("sapi.spvoice")

sapi.Speak msg

2) Save as vbs file



3)Now open the saved file and key in the text you want to convert and click OK.

Try it !!!

No comments:

Post a Comment