gpt4 book ai didi

autohotkey - 仅在单独按下键时发送

转载 作者:行者123 更新时间:2023-12-05 03:08:57 24 4
gpt4 key购买 nike

我想将我的 Windows 键重新映射到其他东西,但我也想保留所有基于 Windows 键的快捷方式。

在伪代码中它会是这样的:


当 LWin Down
直到 LWin Up
如果不是 LWin down
中止
别的
执行命令

最佳答案

在按下左 windows 键后的 0.3 秒内释放它,以执行其他操作(例如发送 a):

~LWin::
KeyWait, LWin
return

~LWin Up::
Send {LWin Up}
If (A_PriorHotKey = "~LWin" AND A_TimeSincePriorHotkey < 300)
Send, a
; else ; another action after long press (not recommendet)
; Send, b
return

编辑:

也试试这个:

LWin up::
If (A_PriorKey = "LWin")
Send a
return

; In this case its necessary to define a custom combination by using "&" or "<#"
; to avoid that LWin loses its original function as a modifier key:

<#d:: Send #d ; <# means LWin

关于autohotkey - 仅在单独按下键时发送,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44295514/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com