好友
阅读权限10
听众
最后登录1970-1-1
|
本帖最后由 lyrong2008 于 2024-4-29 15:38 编辑
GHUB:=DllCall("LoadLibrary", "Str", "DD32.dll", "Ptr")
DD_int:=DllCall("GetProcAddress", Ptr, GHUB, AStr, "Init", "Ptr") ;驱动初始化
DD_key_press:=DllCall("GetProcAddress", Ptr, GHUB, AStr, "KeyPress", "Ptr") ;键盘按键
DD_key_down:=DllCall("GetProcAddress", Ptr, GHUB, AStr, "KeyDown", "Ptr") ;键盘按住
st:=DllCall(DD_int,"Int",86391527)
Hotkey, !q, MyLabel
Hotkey, !w, MyLabel2
return
MyLabel:
send {q}
send {w}
send {e}
return
MyLabel2:
key := SubStr(A_ThisHotkey, 1)
if (InStr(key, "+") or InStr(key, "^") or InStr(key, "!")) ;send {+^!a}
{
Send {Ctrl up}
WinActivate, ahk_id %wnd%
sleep 300
}
DllCall(DD_key_press, "UChar", GetKeyVK("e"), "UChar", 0x1)
return
--------------------------------------------------------------------------
这是一段autohotkey的注册热键的代码,之所以选择:
DllCall(DD_key_press, "UChar", GetKeyVK("e"), "UChar", 0x1)
是因为能用驱动的方式按键,但是问题就出来了,因为热键是alt+w
所以在文本编辑框中或者记事本中,输出不了映射的热键e,所以我折中选择sleep 300
但是发现,相应速度很慢,原生的alt+q 映射send {q} {w} {e},能在按住了alt键的情况下快速输出
就是驱动输出方式,无法正常输出 e
希望论坛的大神帮忙解答下,谢谢!困扰了很久!
ahk版本:Unicode 32-bit
软件下载地址:
https://www.123pan.com/s/P7J5Vv-YQqWd.html提取码:6666
|
|
发帖前要善用【论坛搜索】功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。 |
|
|
|
|