There is an interesting feature in Windows, that makes the text to speak. For making Windows speak, just follow the instructions :
1) Press Windows key + R .
2) Type NOTEPAD and press Enter .
3) In Notepad window, type the following code\
Dim msg, sapi
msg=InputBox("Enter your text","Talk it")
Set sapi=CreateObject("sapi.spvoice")
sapi.Speak msg
4) Then click on File > Save as
Then type filename.vbs and save the file on the desktop
5) Close Notepad and click on the file on the desktop.
Then, in the Text Field, type the desired sentence and press OK .
Then you can hear the words you've typed.
Enjoy !
1) Press Windows key + R .
2) Type NOTEPAD and press Enter .
3) In Notepad window, type the following code\
Dim msg, sapi
msg=InputBox("Enter your text","Talk it")
Set sapi=CreateObject("sapi.spvoice")
sapi.Speak msg
4) Then click on File > Save as
Then type filename.vbs and save the file on the desktop
5) Close Notepad and click on the file on the desktop.
Then, in the Text Field, type the desired sentence and press OK .
Then you can hear the words you've typed.
Enjoy !
Comments
Post a Comment