AU3Newbie Posted January 21, 2007 Posted January 21, 2007 (edited) Have you ever tried to use MS-TTS read text to voice? Microsoft TTS can be used to read text to voice for us,it does seem interesting. Can we make a au3-program to do this? Edited January 21, 2007 by AU3Newbie
NELyon Posted January 21, 2007 Posted January 21, 2007 yes, here is a sample: Global $Input, $Obj $Obj = ObjCreate("SAPI.SpVoice") $Input = InputBox("Enter Text to Say", "Text to Say please") If $Input = "" Then MsgBox(0, "Error", "You must enter something in the box dummy!") Else $Obj.Speak($Input) EndIf
Flamingwolf Posted January 21, 2007 Posted January 21, 2007 (edited) u mean like this?EDIT:D= you beat me to it. oh well. i attached my TTS program and source incase somone wants to see itEDIT: attachment removed to free my attachment space. Link to external host: http://www.sendspace.com/file/fnbc3b Edited January 28, 2009 by Flamingwolf
AU3Newbie Posted January 21, 2007 Author Posted January 21, 2007 Dear D-Generation X, Flamingwolf , thank you very very much.you're so friendly and helpful.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now