mihelson83 Posted January 16, 2023 Posted January 16, 2023 _TalkOBJ("Hi!") Func _TalkOBJ($s_text) Local $o_speech $o_speech = ObjCreate("SAPI.SpVoice") $o_speech.Voice = $o_speech.GetVoices().Item(0) ;0, 1, 3 - voices $o_speech.Speak ($s_text) $o_speech = "" EndFunc ;==>_TalkOBJ() Yes, it works
genius257 Posted January 16, 2023 Posted January 16, 2023 If you want a ready to use solution, you could try utter: https://github.com/thesunRider/Utter To show your appreciation My highlighted topics: AutoIt Package Manager, AutoItObject Pure AutoIt, AutoIt extension for Visual Studio Code Github: AutoIt HTTP Server, AutoIt HTML Parser
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