Make your windows read files writen in notepad! by SCRIPTmaster
open.JPG
prog.JPG
Hi, I this instructable I will teach you how to make your windows xp read text files on your PC via a simple VBscript!. I made this instructable in response to some demand from a previous instructable that I made which is make your windows xp talk!
Anyways, this method uses the windows SAPI in order to read textfiles that are opened via a VBscript which opens the text file chosen, reads its contents and assigns a variable for them as this variable is then read(the contents are read) by the windows SAPI that will be called to read the variable
Follow up with this instructable to see a step by tutorial to make this cool and simple text reader!
Remark: after checking out this instructable please leave a comment about what you think about it and provide a rating, I will be more than happy to hear your comments! Thanks very much hope you like it and find it useful

 
Remove these adsRemove these ads by Signing Up

Step 1: Write up the script...

savy.JPG
First of all you should write up the program(VBscript that is responsible for all that reading). Open notepad and enter the following code in it!:

'Script written by Ayman Farhat (SCRIPTmaster)
'This script allows your PC to read contents of any text file you choose!
Const ForReading = 1
strText = InputBox("Please type in the name of the file you want to read the file, the file has an extension .txt","Read text files from notepad")
Set objFSO = CreateObject("Scripting.FileSystemObject")

Set objText = objFSO.OpenTextFile(strText + ".txt", ForReading)

strText = objText.ReadAll

objText.Close

Set Sapi = Wscript.CreateObject("SAPI.SpVoice")

Sapi.speak strText

When you put the script save your work, when you save write the name of your script followed by.vbs extention as shown in the figure below
Prof. Pickle says: Nov 17, 2012. 3:14 PM
Very creative. I've done some stuff like this before. Instead I used a batch file to send something to say to a VBscript and it would say whatever the person wrote. Very nice, nonetheless.
blakdragon19 says: Aug 10, 2008. 12:20 AM
any way to change the voice? great instructable btw.
SCRIPTmaster (author) says: Aug 11, 2008. 7:44 AM
hx, actually you can change the voice by downloading different SAPI voices other than the default one provided by windows whhich is sam, you can find these voices at the Microsoft website just search for them (download SAPI voices,)..., after you download the voice you can set it as your default voice for your SAPI.., tutorial and documentation are usually available with the download so its not a problem installing it.... good luck
Super_Nerd says: Aug 9, 2011. 2:41 PM
But you cannot add new voices to Windows Vista or 7
blakdragon19 says: Aug 11, 2008. 8:30 AM
thanks man
SCRIPTmaster (author) says: Aug 11, 2008. 9:51 AM
no problem! good luck!
Super_Nerd says: Jan 31, 2011. 7:00 PM
Hey, this is so cool SCRIPTmaster! Just one question, is there a way to make the program read from a certain word in the file to the end of the line? I'm trying to make a program that stores info in a database and reads the info it has as a user input and gives it's respective output.
J-Manoo7 says: Feb 17, 2010. 7:16 PM
I noticed this only works if the txt file is in the same directory as the vbs file, regardless of whether it is open or not.  Is there a way to fix this?
mc_dude says: Feb 16, 2010. 5:44 PM
how in the f did you think of that? its so simple yet i would have never thought of it! cool
J-Manoo7 says: Apr 21, 2009. 7:04 PM
how did you learn how to use VBS?
TheAmazingQuackinator says: Feb 22, 2009. 5:51 PM
how do u read a file that int on the desktop?
sunda66 says: Oct 5, 2008. 12:14 PM
Hi, fantastic !!!, it worked.
lolcat360 says: Aug 17, 2008. 2:54 PM
im confused
wolf555hound says: Aug 14, 2008. 2:40 AM
yay! i can scrpit=] but is there a way to change the little rolled page icon that comes with the document?
I3uckwheat says: Aug 5, 2008. 7:33 AM
can u make one that u click on the vbs and then click the txt doc and make it read it pls?
Sandisk1duo says: Jul 30, 2008. 8:49 AM
Yay! Now someone can easily make ransom messages!
Pro

Get More Out of Instructables

Already have an Account?

close

PDF Downloads
As a Pro member, you will gain access to download any Instructable in the PDF format. You also have the ability to customize your PDF download.

Upgrade to Pro today!