Autohotkey, remap Left Alt + Space to Control + Escape

╄→гoц情女王★ 提交于 2019-12-08 08:21:21

问题


I'm trying to use Autohotkey to make the Windows start menu appear by pressing Left Alt + Space instead of Control + Escape on a keyboard that doesn't have any Windows key.

I'm not sure how you do that. This is what I have tried:

!Space::LWin
!Space::SendInput {LWin}
!Space::Send {Ctrl}{click}
!Space::Send {Ctrl}{Escape}
!Space::SendInput, {^Escape}
!Space::ControlClick, x0 y1200
!Space::MouseClick, left, 0, 1200
!Space::Click, 0, %A_ScreenHeight%
!Space::send {sc05b}
!Space::send {vk5Bsc15B}

But I can't get it to work. Any ideas?

Thanks in advance!


回答1:


This should do the trick

!Space::Send ^{Esc}


来源:https://stackoverflow.com/questions/4371730/autohotkey-remap-left-alt-space-to-control-escape

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!