gpt4 book ai didi

windows - 尝试在 Windows 中使用 Autohotkey 重新映射 Win + [Shift] + 箭头

转载 作者:可可西里 更新时间:2023-11-01 09:57:41 25 4
gpt4 key购买 nike

我正在尝试在 Autohotkey 中编写脚本来完成以下操作:

Win + Left, Win + Shift + Left = HomeWin + 右,Win + Shift + 右 = 结束等

它适用于简单版本 (Win + Arrow),但在组合中添加 Shift 时无效。当同时按下 Shift 和 Win 和 - 比方说 - 向左箭头时,它将窗口移动到另一个桌面(默认 Windows 10 行为)。任何人都可以帮忙吗?这是我的脚本:

#Left::
If GetKeyState("Shift","P")
Send {Home}
else
Send {Home}
Send {Home}
Return

#Right::
If GetKeyState("Shift","P")
Send {End}
else
Send {End}
Return

#Up::
If GetKeyState("Shift","P")
Send {PgUp}
else
Send {PgUp}
Return

#Down::
If GetKeyState("Shift","p")
Send {PgDn}
else
Send {PgDn}
Return

最佳答案

在 Windows 10 上,我已经尝试过并有效。

#+Left::
Send {Home}
Return

关于windows - 尝试在 Windows 中使用 Autohotkey 重新映射 Win + [Shift] + 箭头,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44040814/

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