简体   繁体   中英

AutoHotKey remapping to Shift+Win

I'm trying to remap a shortcut to Shift+Win, but it's not working at all for me. Here's what I have tried:

^RAlt::
KeyWait Alt
KeyWait Ctrl
Send, {LShift down}{LWin down}{LWin up}{LShift up}
return

It seems like this works for any other trigger than ^RAlt . However, this trigger is a valid trigger because it works for something like sending text with AHK. It seems like the problem lies with using this particular trigger and this action.

也许增加睡眠

Send, {LShift down}{LWin down}

Sleep 50

Send, {LWin up}{LShift up}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM