| Author |
Message |
Topic: TTS() Text To Speech using COM |
Flest
Replies: 45
Views: 10761
|
Forum: Scripts & Functions Posted: Wed May 05, 2010 4:39 am Subject: TTS() Text To Speech using COM |
Is there a way to change the format of the voice? e.g. from the default to 48kHz, 16Bit Stereo
I looked Dim f As SpeechLib.SpeechAudioFormatType
f = SAFT22kHz8BitMono ;The test audio output ... |
Topic: Text-To-Speech via COM - Examples |
Flest
Replies: 10
Views: 5038
|
Forum: Scripts & Functions Posted: Wed May 05, 2010 4:23 am Subject: Text-To-Speech via COM - Examples |
I'm getting an error when trying to select different audio formats under Example1GUI.ahk. And with each new format I select, it speaks but it is very distorted.
Each time I select a new audio forma ... |
Topic: FileAppend all letters easy and compact? |
Flest
Replies: 5
Views: 305
|
Forum: Ask for Help Posted: Mon May 03, 2010 2:41 am Subject: FileAppend all letters easy and compact? |
| The only thing I can think of is doing a continuous loop checking which key is pressed down and adding that to the file. But then you would also need to check if the key matched the last key so that i ... |
Topic: Trying to shorten my script |
Flest
Replies: 1
Views: 210
|
Forum: Ask for Help Posted: Mon May 03, 2010 2:25 am Subject: Trying to shorten my script |
The following code cleans it up by using d() instead of SetTimer. This way, you will not need a wait for label for each joystick button. This is a very short version.
Joy1::
Send, {%aBu ... |
Topic: How to detect spacebar? |
Flest
Replies: 2
Views: 239
|
Forum: Ask for Help Posted: Mon May 03, 2010 1:53 am Subject: How to detect spacebar? |
~Space::
FileAppend, %A_Space%, %logfile%
Return |
Topic: SetWinTimer Function (Triggers Variable or Function) |
Flest
Replies: 10
Views: 3031
|
Forum: Scripts & Functions Posted: Mon May 03, 2010 1:43 am Subject: SetWinTimer Function (Triggers Variable or Function) |
| Found the bug in the function, which caused the problem with single shot timers that you described. Thanks for pointing out the problem. I believe it was the - Duration as you said (and another proble ... |
Topic: SetWinTimer Function (Triggers Variable or Function) |
Flest
Replies: 10
Views: 3031
|
Forum: Scripts & Functions Posted: Sat May 01, 2010 5:15 pm Subject: SetWinTimer Function (Triggers Variable or Function) |
Thank you, I have been doing a similar thing with WinHide.
As for running the timer once, using a negative duration, the timer only fires initially when setting UserParam1 to 1, and does not fire a ... |
Topic: SetWinTimer Function (Triggers Variable or Function) |
Flest
Replies: 10
Views: 3031
|
Forum: Scripts & Functions Posted: Fri Apr 30, 2010 3:01 pm Subject: SetWinTimer Function (Triggers Variable or Function) |
| Is it possible to use this function without the need of creating a gui for the handle? |
| |