Make AutoHotKey ignore Alt as menu key

前端 未结 7 2008
情歌与酒
情歌与酒 2021-02-04 11:14

I\'m trying to use autohotkey to simulate elements of Mac keyboard on a PC (Windows) keyboard. My muscle memory reaches for the Command key for simple tasks like copying and pas

7条回答
  •  轮回少年
    2021-02-04 12:00

    It sounds like you need the wildcard modifier. This will make it so if your hotkey is pressed in conjunction with another key. The mapping still works. Give the following a try:

    *LAlt::LCtrl
    

    This will make Alt fire Ctrl for any Alt+Key combination.

提交回复
热议问题