Welcome to Mobilarian Forum - Official Symbianize.

Join us now to get access to all our features. Once registered and logged in, you will be able to create topics, post replies to existing threads, give reputation to your fellow members, get your own private messenger, and so, so much more. It's also quick and totally free, so what are you waiting for?

[TUT] Make Your Computer TALK

PISTI 0

PISTI

Squaddie
Ardent
Joined
Jul 1, 2014
Messages
395
Reaction score
372
Points
28
grants
₲8,820
11 years of service
This is a visual basic script file that will pop up an message which requires
you to write something...
when you write it and press ok
your computer will tell what you typed


Paste This Code on your notepad and save it as talk.vbs

Code:
Dim userInput


userInput = InputBox("Write a message for me to say")


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

Sapi.speak userInput
NOTE: Be sure to save it in a .vbs file extension
 
Top Bottom