Make your PC Talk

Status
Not open for further replies.

alexanderthegreat

Overlord v2.0
Press [Windows]+R and type in 'control speech'. Press enter. In the preview section, enter the text you want the pc to speak out and press preview. Same result. I appreciate the VBScript coding though
 

alexanderthegreat

Overlord v2.0
^^Works perfectly! I know a little bit of VBScript. The code is perfect. Just make sure that you have Microsoft Speech APIs installed.

Lazy ones/ confused ones, copy this into notepad:-
Dim msg, sapi
msg=InputBox("Enter your text", "Speak It")
Set sapi=CreateObject("sapi.spvoice")
sapi.Speak msg
Save it as a .vbs file blah blah blah.... etc.
 
Status
Not open for further replies.
Top Bottom