AutoHotKey LWin + Shift +向左/向右移动+ Home / End

时间:2014-06-04 09:40:59

标签: windows autohotkey

我正在尝试为AutoHotKey制作一个脚本,将LWin + Shift +左/右键组合映射到Shift + Home / End。

我也想让LWin + Left / Right做主页/结束,但我得到了这个。

这就是我现在正在尝试的内容:

LWin & Right::
GetKeyState, state, Shift
if state = D
    Send {Shift}{End}
Else Send {End}
Return

1 个答案:

答案 0 :(得分:4)

抱歉,只是玩了一下脚本并让它运转起来:

LWin & Left::
GetKeyState, state, Shift
If state = D
    Send +{Home}
Else Send {Home}
Return

LWin & Right::
GetKeyState, state, Shift
If state = D
    Send +{End}
Else Send {End}
Return