ahk info
;push win+3 to show your autohotkey information and copy it to your clipboard so you can paste it | |
#3::ahkinfo() | |
ahkinfo(){ | |
isunicode := a_isunicode ? "Unicode" : "ANSI" | |
thisinfo:= "AutoHotkey " . a_ahkversion . " " . isunicode . " on Windows 7 Pro x64" | |
clipboard := thisinfo | |
alert(thisinfo) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment