08-01-2018, 03:50 PM
I'm trying to convert this AHK script to QM code. It mimics a Dragon voice command when the user presses a hotkey.
F1::
DgnEngine:= ComObjCreate("Dragon.DgnEngineControl")
DgnEngine.Register(0)
DgnEngine.RecognitionMimic("select next paragraph")
I know how to do the keyboard hook part and if I understand correctly I don't have to register DgnEngine in QM. So would the first line then be something like?:
And what about the RecognitionMimic part, is there an equivalent to this in QM?
Thanks.
F1::
DgnEngine:= ComObjCreate("Dragon.DgnEngineControl")
DgnEngine.Register(0)
DgnEngine.RecognitionMimic("select next paragraph")
I know how to do the keyboard hook part and if I understand correctly I don't have to register DgnEngine in QM. So would the first line then be something like?:
And what about the RecognitionMimic part, is there an equivalent to this in QM?
Thanks.