Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
需要将 LWin 分配给 LMB 点击。同时我想用 LWin + WASD 作为箭头。我尝试了以下代码。不工作。
#w::Up ; the same for A,S,D LWin::SendInput {Click}
请帮忙。
我已经从 AutoHotKey 论坛得到了答案。只需将波浪号添加到第二行。
#w::Up ; the same for A,S,D ~LWin::SendInput {Click}
感谢 AutoHotKey 用户!