如何使用Dragon NaturallySpeaking的高级脚本发送正确的Windows密钥?

时间:2017-06-28 01:30:18

标签: windows keyboard naturallyspeaking windows-key

如何使用Dragon NaturallySpeaking的高级脚本发送正确的Windows密钥?

enter image description here

SendKeysSendSystemKeysSendDragonKeys似乎无法查看What is the difference between the commands SendKeys, SendSystemKeys or SendDragonKeys?

2 个答案:

答案 0 :(得分:1)

请注意,Declare必须在脚本中的Sub Main之上。然后,这就是使用修饰键的样子:

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_LWIN = 91

Sub Main

keybd_event(VK_LWIN,0,0,0)
SendSystemKeys "{Right}"
keybd_event(VK_LWIN,0,2,0)

答案 1 :(得分:0)

按右侧窗口键:

' From https://knowbrainer.com/forums/forum/messageview.cfm?catid=3&threadid=3032
' Author: monkey8
' Tested with Dragon NaturallySpeaking 12.5 with Windows 7 SP1 x64 Ultimate
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_RWIN = 92
Sub Main
keybd_event(VK_RWIN,0,0,0)
'if you want to send a key while holding down the Windows key then insert the code here
keybd_event(VK_RWIN,0,2,0)
End Sub

按左侧窗口键:

' From https://knowbrainer.com/forums/forum/messageview.cfm?catid=3&threadid=3032
' Author: monkey8
' Tested with Dragon NaturallySpeaking 12.5 with Windows 7 SP1 x64 Ultimate
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_LWIN = 91
Sub Main
keybd_event(VK_LWIN,0,0,0)
'if you want to send a key while holding down the Windows key then insert the code here
keybd_event(VK_LWIN,0,2,0)
End Sub

键盘代码的有用参考:List of Virtual Key Codesmirror