Autohotkey, remap Left Alt + Space to Control + Escape
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!
This should do the trick
!Space::Send ^{Esc}
精彩评论