简体   繁体   English

自动热键将Win-Z映射到CTRL-SHIFT-f

[英]Autohotkey map Win-Z to CTRL-SHIFT-f

I tried to bind the key-combination CTRL + SHIFT + f to ⊞ Win + z with the following command in the autohotkey configuration file: 我尝试使用autohotkey配置文件中的以下命令将组合键CTRL + SHIFT + f绑定到⊞Win + z

z::Send ^{Shift}/ z ::发送^ {Shift} /

But this does not work. 但这不起作用。 It seems to me, the not all three keys are "presed" together. 在我看来,并非所有三个键都是“拼凑”在一起的。 Any idea how to fix it? 知道怎么解决吗?

; ; Windows-z is "#z" ; Windows-z是“#z”; Ctrl-Shift-F is "^+f" Ctrl-Shift-F为“ ^ + f”

#z::Send, ^+f #z ::发送,^ + f

; ; if this fails for any reason ,try 如果由于任何原因失败,请尝试

; ; Send, {Ctrl Down}{Shift down}f{Shift up}{Ctrl up} 发送{Ctrl向下} {Shift向下} f {Shift向上} {Ctrl向上}

; ; instead 代替

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM