![]() |
|
[AutoIt]Text-To-Speech - Printable Version +- Sinisterly (https://sinister.li) +-- Forum: Coding (https://sinister.li/Forum-Coding) +--- Forum: Coding (https://sinister.li/Forum-Coding--71) +--- Thread: [AutoIt]Text-To-Speech (/Thread-AutoIt-Text-To-Speech) |
[AutoIt]Text-To-Speech - 1234hotmaster - 10-23-2011 Code: Func CompText2Speech($sText)
$SAPI = ObjCreate(Chr(83)&Chr(65)&Chr(80)&Chr(73)&Chr(46)& _
Chr(83)&Chr(112)&Chr(86)&Chr(111)&Chr(105)& _
Chr(99)&Chr(101))
$SAPI.speak($sText)
$SAPI=0
EndFuncRE: [AutoIt]Text-To-Speech - Shining White - 11-29-2011 how this works ????? mmmm RE: [AutoIt]Text-To-Speech - 1234hotmaster - 11-29-2011 copy paste the function and use it like this: Code: CompText2Speech("Hello world this microsoft sam if you are using windows xp")RE: [AutoIt]Text-To-Speech - ArkPhaze - 11-29-2011 Windows built in SAPI This is one of the easy ways to use text to speech in most languages for a targetted Windows machine.
RE: [AutoIt]Text-To-Speech - Shining White - 11-29-2011 got it , thanks bro p.S - Can't read your name , Master is better
RE: [AutoIt]Text-To-Speech - 1234hotmaster - 11-29-2011 (11-29-2011, 07:43 AM)Shining White Holmse Wrote: got it , thanks bro When you start making rootkits you'll remember my name for sure
|