Warning: file_get_contents(/data/phpspider/zhask/data//catemap/6/EmptyTag/143.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Autohotkey 如何使用Lctrl+;在第二个键盘上使用AHK制表符使用intercept?_Autohotkey_Intercept - Fatal编程技术网

Autohotkey 如何使用Lctrl+;在第二个键盘上使用AHK制表符使用intercept?

Autohotkey 如何使用Lctrl+;在第二个键盘上使用AHK制表符使用intercept?,autohotkey,intercept,Autohotkey,Intercept,我想实现Lctrl+tab的一个基本命令,并在第二个键盘上重新映射我的PageUp键,并如上所述使用它,但在头脑风暴之后,我无法做到这一点 我尝试的方式: pgdn::Send, ^{Tab} pgdn::Send, ^Tab pgdn::Send, ^+Tab 这些都不行。 我做错了什么?PgDn::Send{LControl Down}{Tab}{LControl Up}我通过以下方式解决了这个问题: 将键盘重新插入其他端口并重新安装自动热键 在此之后,从intercept中删除旧密钥

我想实现Lctrl+tab的一个基本命令,并在第二个键盘上重新映射我的PageUp键,并如上所述使用它,但在头脑风暴之后,我无法做到这一点

我尝试的方式:

pgdn::Send, ^{Tab}

pgdn::Send, ^Tab

pgdn::Send, ^+Tab
这些都不行。
我做错了什么?

PgDn::Send{LControl Down}{Tab}{LControl Up}
我通过以下方式解决了这个问题:

  • 将键盘重新插入其他端口并重新安装自动热键

  • 在此之后,从intercept中删除旧密钥并添加新密钥(这是不必要的)

  • 成功了


  • 不工作,键盘制造重要吗?命令是否区分大小写?是否需要使用+将命令绑定在一起/