I've been playing with windows 7 voice recognition; The recognition seems to be working just fine, But the process of adding new words [the GUI] to the recognition dictionaries is horrible .
I'm trying to find a way to automate the process of getting the new words into the recognition Dictionary, But the problem is that there doesn't seem to be a way to recognize/find the Voice recognition bar.
And if I Can't get AutoHotkey to recognize/find the voice recognition bar, I can't automate the other steps.
This is what I've got... This is all tat comes up when trying to click on anything with it.
[from spy]
Code:
>>>>>>>>>>( Window Title & Class )<<<<<<<<<<<
ahk_class MS:SpeechUXCtxMenuParkingWnd
OR
>>>>>>>>>>( Window Title & Class )<<<<<<<<<<<
ahk_class NativeHWNDHost
or
>>>>>>>>>>( Window Title & Class )<<<<<<<<<<<
ahk_class Shell_TrayWnd
And doing this:
Code:
^l::
traytip,Microsoft Voice recognition, Listening
winactivate ahk_class NativeHWNDHost
sleep, 1000
return
I tried all the options nothing seemed to work...
All I'm trying to do Is either be able to locate this docked recognition bar, Or to Make something appear So that I can automate the rest of the process.
Does anyone have any ideas or could you point me in the right direction ?