3

I am using a laptop having Windows Vista. It lacks a numpad. But I want a numpad, without having an external keyboard, for some reason. I have a Fn key for special functions like screen brightness, volume control etc. I saw numpads in some laptops, which allows numpas in some keys (10 letter with or without some character keys in the pattern of numpad), by pressing along with Fn key. Is is possible to define it manually so that I can define numpad on some keys?

studiohack
  • 13,477
Alfred
  • 710

2 Answers2

1

You could create your own keyboard layout, based on a stock layout. MSKLC is your friend.

0xC0000022L
  • 7,544
  • 10
  • 54
  • 94
0

AutoHotkey should be able to solve this for you.

AutoHotkey is a free, open-source utility for Windows. With it, you can:

  • Automate almost anything by sending keystrokes and mouse clicks. You can write a mouse or keyboard macro by hand or use the macro recorder.
  • Create hotkeys for keyboard, joystick, and mouse. Virtually any key, button, or combination can become a hotkey.
  • Expand abbreviations as you type them. For example, typing "btw" can automatically produce "by the way".
  • Create custom data-entry forms, user interfaces, and menu bars. See GUI for details.
  • Remap keys and buttons on your keyboard, joystick, and mouse.
  • Respond to signals from hand-held remote controls via the WinLIRC client script.
  • Run existing AutoIt v2 scripts and enhance them with new capabilities.
  • Convert any script into an EXE file that can be run on computers that don't have AutoHotkey installed.
VenkatH
  • 636