; IMPORTANT INFO ABOUT GETTING STARTED: Lines that start with a ; semicolon, such as this one, are comments. They are not executed. ; This script has a special filename and path because it is automatically ; launched when you run the program directly. Also, any text file whose ; name ends in .ahk is associated with the program, which means that it ; can be launched simply by double-clicking it. You can have as many .ahk ; files as you want, located in any folder. You can also run more than ; one ahk file simultaneously and each will get its own tray icon. Numpad7:: Send ð return NumpadHome:: Send Ð return Numpad8:: Send þ return NumpadUp:: Send Þ return Numpad9:: Send æ return NumpadPgUp:: Send Æ return Numpad4:: Send {U+0101} return NumpadLeft:: Send {U+0100} return Numpad5:: Send {U+0113} return NumpadClear:: Send {U+0112} return Numpad6:: Send {U+012B} return NumpadRight:: Send {U+012A} return Numpad1:: Send {U+014D} return NumpadEnd:: Send {U+014C} return Numpad2:: Send {U+016B} return NumpadDown:: Send {U+016A} return Numpad3:: Send {U+01FD} return NumpadPgDn:: Send {U+01FC} return Numpad0:: Send dominich4@hotmail.co.uk return NumpadIns:: Send king@oldrectoryland.com return NumpadDiv:: Send {U+0120} return NumpadMult:: Send {U+0121} return NumpadAdd:: Send {U+010A} return NumpadSub:: Send {U+010B} return ; Note: From now on whenever you run AutoHotkey directly, this script ; will be loaded. So feel free to customize it to suit your needs.