Skip to content

Instantly share code, notes, and snippets.

@neo-sam
Created September 3, 2021 09:24
Show Gist options
  • Save neo-sam/7c265d5228e5efd0b7af492504e922e2 to your computer and use it in GitHub Desktop.
Save neo-sam/7c265d5228e5efd0b7af492504e922e2 to your computer and use it in GitHub Desktop.
Windows Autohotkey Numpad Emulator By Key `jkluio789`
FileName := A_Temp . "\ahk_numpad_emulator_will_close"
if FileExist(FileName)
{
FileDelete %FileName%
Goto ForceExit
}
#NoTrayIcon
Menu, Tray, Icon, calc.exe
Menu, Tray, Icon
Menu, Tray, Tip, Numpad Emulator
#SingleInstance Force
OnExit, ExitSub
return
ExitSub:
if (A_ExitReason == "Single")
{
FileAppend,,%FileName%
}
ForceExit:
ExitApp
j::Numpad1
k::Numpad2
l::Numpad3
u::Numpad4
i::Numpad5
o::Numpad6
7::Numpad7
8::Numpad8
9::Numpad9
m::Numpad0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment