09-21-2024, 09:19 AM
Hi,
I have tested my current version on Win 10 and Win 11, both working for me.
Since you are still having issues I have updated the beta version (1.2.29.9) of the extension to include a DebugMode option. This will fire the Listen event when any speech is detected, even it is not reccognised by the vocabulary. Test program below:
Please try after setting up speech recognition on your PC in prefered language. Do NOT try to change the locale in the SB code at the moment.
I have tested my current version on Win 10 and Win 11, both working for me.
Since you are still having issues I have updated the beta version (1.2.29.9) of the extension to include a DebugMode option. This will fire the Listen event when any speech is detected, even it is not reccognised by the vocabulary. Test program below:
Please try after setting up speech recognition on your PC in prefered language. Do NOT try to change the locale in the SB code at the moment.
Code:
vocab[1] = "red"
LDSpeech.DebugMode = "True"
LDSpeech.Vocabulary(vocab)
LDSpeech.Listen = OnListen
While ("True")
Program.Delay(10)
EndWhile
Sub OnListen
TextWindow.WriteLine(LDSpeech.LastSpoken)
EndSub