![]() |
KnowBrainer Speech Recognition | ![]() |


|
Topic Title: Keyboard + mouse command Topic Summary: keyboard and mouse commands Created On: 11/18/2011 02:04 PM Status: Post and Reply |
|
![]() |
- cripp7 | - 11/18/2011 02:04 PM |
![]() |
- Larry Allen | - 11/27/2011 12:43 PM |
![]() |
- monkey8 | - 11/27/2011 05:14 PM |
![]() |
- Lunis Orcutt | - 11/27/2011 09:10 PM |
![]() |
- cripp7 | - 11/28/2011 08:23 AM |
![]() |
- monkey8 | - 11/28/2011 01:41 PM |
![]() |
- mdl | - 03/17/2012 01:55 AM |
|
|
|
|
I searched the forums but couldn't find anything, but I'm want to create a command that will do a ctrl-left click, alt-left click, shift-right click, etc.. I'm using Dragon 9.5 Pro. cripp -------------------------
|
|
|
|
|
|
|
|
|
The easiest way for most to create these is using the Macro Recorder. Advanced Scripting can also be used, but looks a lot more intimidating to non-programmers. ------------------------- Larry Allen |
|
|
|
|
|
|
|
|
For the control left click at least this command is already built into Dragon, just say: ------------------------- |
|
|
|
|
|
|
|
|
Your member profile states that you're using Premium 11 which doesn't include Macro Recorder or Advanced-Scripting command options. Would you like us to update your profile or are you using both Pro 9.5 and Premium 11?
-------------------------
|
|
|
|
|
|
|
|
|
Yes, update my profile. I'm using KnowBrainer+DNS 11 on one machine and just 9.5 Pro on the other.
-------------------------
|
|
|
|
|
|
|
|
|
Incidentally I just noticed you are using 9.5 and it may be possible that the voice commands I gave you are not available with that version. In that case you can create the commands you want using the following type of script:
Declare Function keybd_event Lib "user32.dll" (ByVal vKey As _ Long, bScan As Long, ByVal Flag As Long, ByVal exInfo As Long) As Long Const VK_CTRL = 17 Const VK_SHIFT = 16 Const Vk_ALT = 18 Sub Main keybd_event(VK_CTRL,0,0,0) ButtonClick 1,1 keybd_event(VK_CTRL,0,2,0) End Sub the example I have given you is for a control left click. If you want to use a different keythen just change the key name in the keyboard events. I have added the values of the other keys for you to see. If you need to do right clicks then just change the parameters on the button click. Info in the help file. Lindsay ------------------------- |
|
|
|
|
|
|
|
|
is ShiftKeys still working with DNS Advanced Scripting? if so, this is much easier with that. The Vocola version (easily translated to DNS advanced scripting) is:
<modifier> := ( shift=1 | control=2 | alt=3 ); |
|
|
|
|
FuseTalk Standard Edition v4.0 - © 1999-2013 FuseTalk™ Inc. All rights reserved.