![]() |
KnowBrainer Speech Recognition | ![]() |
Topic Title: Is there a list/documention somewhere for what all the keys are for Dragon Command scripting, such as "+" for Shift, "^" for Ctrl", etc. for all keys? Topic Summary: And also, what is the Alt key, for Dragon commands?! Created On: 05/14/2023 06:13 PM Status: Post and Reply |
|
![]() |
![]() |
- brainerfan | - 05/14/2023 06:13 PM |
![]() |
![]() |
- Matt_Chambers | - 05/14/2023 07:44 PM |
![]() |
![]() |
- Lunis Orcutt | - 05/14/2023 08:02 PM |
![]() |
![]() |
- brainerfan | - 05/14/2023 09:03 PM |
![]() |
![]() |
- Alan Cantor | - 05/14/2023 11:27 PM |
![]() |
![]() |
- monkey8 | - 05/15/2023 07:26 AM |
![]() |
|
Like shift = "+", Ctrl = "^", etc?
Also, in KnowBrainer for Alt it was "%", but what is it for Dragon?! Been trying to make a command using the Alt key, and it's been driving me crazy.
Any help is appreciated!
|
|
|
|
![]() |
|
|
|
![]() |
|
KnowBrainer scripts are written in WinWrap Basic which is basically the same WinWrap Basic Nuance added to Dragon 15.61. You can copy most KnowBrainer commands, as is, into Dragon. Of course if you already own KnowBrainer, there is no advantage in doing this. Alt+f (legacy Dragon DVC script which is also available in KnowBrainer) = %f in VB.
------------------------- Change "No" to "Know" w/KnowBrainer 2022 |
|
|
|
![]() |
|
My issue is when I want to ONLY press the Alt key alone, and nothing else... And that doesn't seem to work. )-:
Any way to do this? |
|
|
|
![]() |
|
Pressing the Alt key itself does something mostly in windows that have menus or ribbons. For these applications, pressing and releasing Alt causes keyboard input focus to transfer from the active part of the window (e.g., the document) to the menu (or ribbon) itself. |
|
|
|
![]() |
|
Also, in KnowBrainer for Alt it was "%", but what is it for Dragon?! Been trying to make a command using the Alt key, and it's been driving me crazy.
Any help is appreciated!
for a list of all the keys go here(Presuming you using Dragon 15.61?:
https://www.winwrap.com/web2/basic/#!/ref/WWB-doc_sendkeys_instr.htm
If you want to press the alt key on its own just say "press alt key", whatever the Dragon version.
If you want to do it by script use the following, again whatever the Dragon version:
' Declare keyboard events Windows API function, Scripts by www.pcbyvoice.com Declare Function keybd_event Lib "user32.dll" (ByVal vKey As _ Long, bScan As Long, ByVal Flag As Long, ByVal exInfo As Long) As Long ' declare virtual key constant for the alt key Const VK_ALT = &h12 Sub Main 'press the alt key keybd_event(VK_ALT,0,0,0) 'release the alt key keybd_event(VK_ALT,0,2,0) End Sub
Alternatively you could use:
Sub Main EngineControl.RecognitionMimic "press alt key" End Sub ------------------------- |
|
|
FuseTalk Standard Edition v4.0 - © 1999-2023 FuseTalk™ Inc. All rights reserved.