作者bodhi (????)
看板EzHotKey
标题Re: [AHK-] 请问怎麽真实模拟D-pad的上下左右?
时间Fri Apr 24 16:23:08 2015
我把上下 改到YH测试 有些问题想要请教一下
※ 引述《eight0 ( )》之铭言:
: ~up::
: if (GetKeyState("down")) {
^^^这down後面没有模式参数 是指down down吗?
如果只是确认down的发送状态 那无论有没有按 都直接send {xx up}的话
会不会甚麽缺点? 会比较慢? 还是?
: Send {down up}
如果改用sendinput有没有甚麽缺点?
: }
: return
我把up改到Y down改到H後:
---------------------------
y:: a::b这种标准的remap 实际上是用send发送的吗?
send {up down} ~up原本同步发送的up key 该用send还是sendinput?
if (GetKeyState("down")) {
Send {down up}
}
return
y up::
send {up up}
if (GetKeyState("h", "P")) {
Send {down down}
}
return
h::
send {down down}
if (GetKeyState("up")) {
Send {up up}
}
return
h up::
send {down up}
if (GetKeyState("y", "P")) {
Send {up down}
}
return
-------------------------- 可能是我逻辑不好 或是官网说明不了解 谢谢你的帮忙^^
: ~up up::
: if (GetKeyState("down", "P")) {
: Send {down down}
: }
: return
--
※ 发信站: 批踢踢实业坊(ptt.cc), 来自: 1.164.108.89
※ 文章网址: https://webptt.com/cn.aspx?n=bbs/EzHotKey/M.1429863790.A.32B.html