Make Your Computer talking

Have you ever thought that your computer will speak everything that you write?Wouldn't it be funny?
Yes It is possible to make your computer speak whatever you write.you can make this with vb script in windows XP, Vista, 7, 8, 8.1.

To make this script, Follow the steps below.



Steps
  1. Open Notepad.
  2. Copy and Paste Code giver below.
 Dim Message, Speak
          Message=InputBox("Enter text","Speak")
          Set Speak=CreateObject("sapi.spvoice")
          Speak.Speak Message
     3.  And save it as "*.vbs" (without quotes) where * is any name.
     4.  Open saved file and write that you want your computer to speak.

Now, Your computer will speak which you have written in the textbox.



You may also like