Introduction: 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.

Step 1: What You Need

What you need - Notepad and A Windows Computer (Version 7 through 8.1 works)

Step 2: 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!

Step 3: 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 .vbsfile, or else it will not work. Do not save it as .txt!

Now open the file and have fun!

Step 4: Credits

Tutorial made by VB Scripting, working along with Nick Smith. Thanks to instructables.com for the quick and easy layout.