AskOverflow.Dev

AskOverflow.Dev Logo AskOverflow.Dev Logo

AskOverflow.Dev Navigation

  • 主页
  • 系统&网络
  • Ubuntu
  • Unix
  • DBA
  • Computer
  • Coding
  • LangChain

Mobile menu

Close
  • 主页
  • 系统&网络
    • 最新
    • 热门
    • 标签
  • Ubuntu
    • 最新
    • 热门
    • 标签
  • Unix
    • 最新
    • 标签
  • DBA
    • 最新
    • 标签
  • Computer
    • 最新
    • 标签
  • Coding
    • 最新
    • 标签
主页 / computer / 问题 / 1838305
Accepted
ene adelehum
ene adelehum
Asked: 2024-04-08 21:34:42 +0800 CST2024-04-08 21:34:42 +0800 CST 2024-04-08 21:34:42 +0800 CST

这个单、双和保持 AHK 脚本不起作用

  • 772

我从https://autohotkey.com/boards/viewtopic.php?f=5&t=51596找到了这个脚本,它工作得很好。我喜欢它很容易理解并轻松更改您想要的键。

事情是:

  1. 当它第一次运行而无需我按任何键时,它会触发“a”

  2. 我想使用此方法设置其他键,但它仅适用于第一个键分配。我复制了工作脚本并尝试修改变量名称以免相互干扰并将其粘贴到最底部的“返回”下方,但我在下面添加的任何内容都KeyWait, {%Key%} tapCount = Return不起作用

这是当前修改的部分工作脚本,我在这里缺少什么

Key = a ;Main Keybind
tLength = -300 ;Time before key is pressed
tapSingle = a ;Single Tap Keybind
tapDouble = b ;Double Tap Keybind
tapHold = c ;Hold Keybind
;----------------------------------------------------------
Hotkey, $%Key%, startTimer
startTimer:
If !endTimer
SetTimer, endTimer, %tLength%
tapCount++
Return
endTimer:
If GetKeyState(Key, "P") and tapCount < 2
Send, {%tapHold%}
Else If tapCount = 2
Send, {%tapDouble%}
Else If tapCount = 1
Send, {%tapSingle%}
KeyWait, {%Key%}
tapCount =
Return

==ANYTHING BELOW IS NOT WORKING==

bKey = b ;Main Keybind
btLength = -300 ;Time before key is pressed
btapSingle = w ;Single Tap Keybind
btapDouble = a ;Double Tap Keybind
btapHold = s ;Hold Keybind
;----------------------------------------------------------
Hotkey, $%bKey%, bstartTimer
bstartTimer:
If !bendTimer
SetTimer, bendTimer, %btLength%
btapCount++
Return
bendTimer:
If GetKeyState(bKey, "P") and btapCount < 2
Send, {%btapHold%}
Else If btapCount = 2
Send, {%btapDouble%}
Else If btapCount = 1
Send, {%btapSingle%}
KeyWait, {%bKey%}
btapCount =
Return
keyboard
  • 1 1 个回答
  • 35 Views

1 个回答

  • Voted
  1. Best Answer
    Don't Root here plz...
    2024-04-08T22:39:19+08:002024-04-08T22:39:19+08:00

    存在一些语法问题(例如,tapCount = 倒数第二行)。我重新编写了脚本,将其更新为AutoHotkey v2并使用一个函数,以便可以绑定多个组合键,而无需复制和粘贴行。

    TripleBind(mainKey, msec, singleKey, doubleKey, holdKey)
    {
      ProcessPress(key)
      {
        static count := 0
        held := true
        ++count
        AfterTime()
        {
          if (held) {
            Send holdKey
          } else if (count == 1) {
            Send singleKey
          } else {
            Send doubleKey
          }
          count := 0
        }
    
        if (count == 1) {
          SetTimer AfterTime, -1 * msec
          KeyWait mainKey
          held := false
        }
      }
    
      Hotkey "$" . mainKey, ProcessPress
    }
    
    TripleBind("a", 300, "a", "b", "c")
    TripleBind("b", 300, "w", "a", "s")
    
    • 1

相关问题

  • 东芝笔记本电脑键盘打印随机字符

  • 如何使用键盘媒体键禁用 Youtube 控制

  • 打印屏幕键不适用于某些应用程序

  • 使用 Windows 10 时定期插入“-”字符

  • Excel - 可以使用键盘移动范围输入字段中的文本光标吗?

Sidebar

Stats

  • 问题 205573
  • 回答 270741
  • 最佳答案 135370
  • 用户 68524
  • 热门
  • 回答
  • Marko Smith

    如何减少“vmmem”进程的消耗?

    • 11 个回答
  • Marko Smith

    从 Microsoft Stream 下载视频

    • 4 个回答
  • Marko Smith

    Google Chrome DevTools 无法解析 SourceMap:chrome-extension

    • 6 个回答
  • Marko Smith

    Windows 照片查看器因为内存不足而无法运行?

    • 5 个回答
  • Marko Smith

    支持结束后如何激活 WindowsXP?

    • 6 个回答
  • Marko Smith

    远程桌面间歇性冻结

    • 7 个回答
  • Marko Smith

    子网掩码 /32 是什么意思?

    • 6 个回答
  • Marko Smith

    鼠标指针在 Windows 中按下的箭头键上移动?

    • 1 个回答
  • Marko Smith

    VirtualBox 无法以 VERR_NEM_VM_CREATE_FAILED 启动

    • 8 个回答
  • Marko Smith

    应用程序不会出现在 MacBook 的摄像头和麦克风隐私设置中

    • 5 个回答
  • Martin Hope
    Vickel Firefox 不再允许粘贴到 WhatsApp 网页中? 2023-08-18 05:04:35 +0800 CST
  • Martin Hope
    Saaru Lindestøkke 为什么使用 Python 的 tar 库时 tar.xz 文件比 macOS tar 小 15 倍? 2021-03-14 09:37:48 +0800 CST
  • Martin Hope
    CiaranWelsh 如何减少“vmmem”进程的消耗? 2020-06-10 02:06:58 +0800 CST
  • Martin Hope
    Jim Windows 10 搜索未加载,显示空白窗口 2020-02-06 03:28:26 +0800 CST
  • Martin Hope
    andre_ss6 远程桌面间歇性冻结 2019-09-11 12:56:40 +0800 CST
  • Martin Hope
    Riley Carney 为什么在 URL 后面加一个点会删除登录信息? 2019-08-06 10:59:24 +0800 CST
  • Martin Hope
    zdimension 鼠标指针在 Windows 中按下的箭头键上移动? 2019-08-04 06:39:57 +0800 CST
  • Martin Hope
    jonsca 我所有的 Firefox 附加组件突然被禁用了,我该如何重新启用它们? 2019-05-04 17:58:52 +0800 CST
  • Martin Hope
    MCK 是否可以使用文本创建二维码? 2019-04-02 06:32:14 +0800 CST
  • Martin Hope
    SoniEx2 更改 git init 默认分支名称 2019-04-01 06:16:56 +0800 CST

热门标签

windows-10 linux windows microsoft-excel networking ubuntu worksheet-function bash command-line hard-drive

Explore

  • 主页
  • 问题
    • 最新
    • 热门
  • 标签
  • 帮助

Footer

AskOverflow.Dev

关于我们

  • 关于我们
  • 联系我们

Legal Stuff

  • Privacy Policy

Language

  • Pt
  • Server
  • Unix

© 2023 AskOverflow.DEV All Rights Reserve