I was cleaning my desktop just now and noticed this script. Where did I get it - this I can't remember
This script works with MS Sam, you input some text and Sam says it
To close is just enter a space and press enter.
Dim msg, sapi
Do
msg=InputBox("Enter your text and press 'ENTER' to make MicroShafts SaM talk","MicroShaft Sam")
Set sapi=CreateObject("sapi.spvoice")
sapi.Speak msg
loop until msg = " "