Talking Computer // Notepad Tricks
by VB Scripting in Circuits > Tools
5383 Views, 26 Favorites, 0 Comments
Talking Computer // Notepad Tricks
Hello! Today I am going to show you how to allow your computer talk to you on any Windows computer! Just follow the short and simple instructions.
What You Need
What you need - Notepad and A Windows Computer (Version 7 through 8.1 works)
How To
Open Notepad.
Copy and paste this code into Notepad.
dim speechobject
set speechobject=createobject("sapi.spvoice")
say=inputbox("What would you like me to say?", "Created by VB Scripting")
speechobject.speak "" +say
msgbox("This was created by VB Scripting // Nick Smith.", "Credits")
You can change this VBScript and create a whole new one very easily. Just change the text "What would you like me to say?" into whatever you want the text to be. Remember to keep the quotation marks around the text!
Save It
Now all you have to do is save the file as passwordprank.vbs or something like that. You must save it as a .vbs file, or else it will not work. Do not save it as .txt!
Now open the file and have fun!
Credits
Tutorial made by VB Scripting, working along with Nick Smith. Thanks to instructables.com for the quick and easy layout.