< : left > : right # :win, ^ : ctrl, !: alt + : shift
; meta - <: left, >: right ; meta - #:win, ^: ctrl, !: alt, +: shift ; meta - remind Appskey ; meta - sc138 - hanja, right alt ; meta - sc038 - left alt ; meta - sc11D - right control
Win+C, Shift+Win+C, Ctrl+Win+C, etc. will all trigger this hotkey.
*#c::Run Calc.exe
~
조건을 만족하지 않을 경우 원래 키를 입력하게
just prefix to prevent blocking native(original) function of that key
~#E::MsgBox, You've pressed Win-Key ;Win+E function to open explorer still working. ;then try below and compare the result #E::MsgBox, You've pressed Win-Key ;Win+E doesn't working anymore
What does an asterisk mean at the beginning of an AHK script's line?
Fires the hotkey regardless of the modifiers being held down. http://www.autohotkey.com/docs/Hotkeys.htm Wildcard: Fire the hotkey even if extra modifiers are being held down. This is often used in conjunction with remapping keys or buttons. For example: Win+C, Shift+Win+C, Ctrl+Win+C, etc. will all trigger this hotkey.
https://stackoverflow.com/questions/10334603/what-does-an-asterisk-mean-at-the-beginning-of-an-ahk-scripts-line
