Results 1 to 2 of 2

Thread: How to get your Computer to Say everything you type

  1. #1
    Join Date
    Apr 2008
    Posts
    2,276

    How to get your Computer to Say everything you type

    Windows comes with a built in voice system, which I wanted to utilize recently. In this guide, you’ll learn a Visual Basic script that is only a few lines, which will give you a popup box you can use to type in anything you want your computer to say.

    This script utilizes Microsoft’s speech API, which is installed on most Windows XP, Vista, and Seven installations; if this guide does not work, you do not have the SAPI.

    Copy the following text and paste it into Notepad

    Dim message, sapi
    message=InputBox("What do you want me to say?","Speak to Me")
    Set sapi=CreateObject("sapi.spvoice")
    sapi.Speak message
    Save the file as ‘speak.vbs‘ (be sure to include the .vbs)

    Now double click on speak.vbs and you’ll see an input box. Type in your message, press enter, and listen to your computer speaking.



    If this Doesn’t Work…
    You’ve probably run in to one of two problems:

    1. Your browser displays the quotation marks differently. Go back to the Notepad file and replace all the quotes (”). Save the file and try again.



    2. You do not have the SAPI installed on your computer, so this will not work (very unlikely as this comes with Windows, but if you have a custom/pirate version this may be the case.)

  2. #2
    Join Date
    Dec 2007
    Posts
    1,599

    Re: How to get your Computer to Say everything you type

    You can also go to control panel > speech options. their is a speech thingy on there!!! If you have a mac, use text edit!!!

Similar Threads

  1. Computer Virus type poll
    By snacdaws in forum Polls & Voting
    Replies: 4
    Last Post: 21-03-2013, 05:48 PM
  2. Replies: 1
    Last Post: 16-08-2010, 05:25 PM
  3. Replies: 3
    Last Post: 15-10-2009, 11:17 AM
  4. how to find out object type(user,computer,group) in active directory?
    By vivekmohan in forum Software Development
    Replies: 2
    Last Post: 06-08-2009, 04:19 PM
  5. Replies: 2
    Last Post: 15-07-2008, 05:44 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,714,005,848.03417 seconds with 17 queries