重新映射" Ctrl + l"到" Alt + d"使用Autohotkey(W7 Pro SP1)

时间:2017-01-02 16:09:25

标签: windows keyboard-shortcuts autohotkey

我想将 Ctrl + l 重新映射到 Alt + d 所以我可以在I&时突出显示文件路径#39;在资源管理器中。但是,我所有的尝试都没有成功。

LCtrl & l::LAlt & d

返回:

^l::
    !d
return

不起作用。

^l::!d

也不起作用。

LCtrl & l::LAlt & d

返回:

Error at line 12.
Line Text: LAlt & d
Error: This line does not contain a recognized action.

The program will exit.  

但我在其他脚本中使用过该表达式并对其进行了测试。

实现这一目标的正确方法是什么?

1 个答案:

答案 0 :(得分:2)

此AutoHotkey脚本应该满足您的要求 在Windows 7上测试。

#IfWinActive, ahk_class CabinetWClass
^l::
#IfWinActive, ahk_class ExploreWClass
^l::
SendInput !d
Return
#IfWinActive