A curated list of awesome AutoHotkey libraries, library distributions, scripts, tools and resources.
I defined a hotkey #c, and it work fine with real keyboard or win 10 touch keyboard, but cannot trigger by the following ahk:
^!c::send {LWin Down}{c}{LWin Up}
I found if the Win key is win10 system’s hotkey, it can trigger by ahk:
^!c::send {LWin Down}{r}{LWin Up}
What should I do?