|

Ever wish you could do Windows ‘Copy’ or ‘Paste’ with one key
stroke…. check this out:
NUMBER
PAD: re-scripted to perform
other function when not in
‘Number Lock’.

Get the
script writer, compiler and other ideas from:
http://www.autohotkey.com/docs/Hotkeys.htm
CODE:
;Script Function:
; Numberic KeyPad to Win Function Keys etc.
; Version: 1.x
;
; * Platform: Win9x/NT/XP *
; * Author: Capnmax.com *
;
;HEADER (DON'T CHANGE)
#NoEnv
SendMode Input
#SingleInstance force
;MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
;Make the Left Shift Key & the mouse wheel into a substitute for Alt-tab.
;Holding the Left Shift Key & clicking the middle button displays the Menu.
;Holding the Left Shift Key & turning the wheel navigates through the Menu.
<+MButton::AltTabMenu
<+WheelDown::AltTab
<+WheelUp::ShiftAltTab
;FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
;FUNCTIONS:
;Number Pad Key '0/Ins'= SPACE
NumpadIns::Space
;Number Pad Key '1/End'= CONTROL
NumpadEnd::Ctrl
;Number Pad Key '2/Down'= ALT
NumpadDown::Alt
;Number Pad Key '3/PgDn'= SHIFT
NumpadPgDn::LShift
;Number Pad Key '4/Left'= TAB
NumpadLeft::Tab
;Number Pad Key '5/Clear'= UnDo
NumpadClear::Send ^z
;Number Pad Key '6/Right'= PrintScreen
NumpadRight::Send {PrintScreen}
;Number Pad Key '7/Home'= ALL
NumpadHome::Send ^a
;Number Pad Key '8/Up'= CUT
NumpadUp::Send ^x
;Number Pad Key '9/PgUp'= COPY
NumpadPgUp::Send ^c
;CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC
;CONSTANTS:
;Number Pad Key '+'= PASTE
NumpadAdd::Send ^v
;Number Pad Key '-'= REPLACE
NumpadSub::Send ^h
;Number Pad Key '*'= SAVE
NumpadMult::Send ^s
;Number Pad Key '/'= NumLock
NumpadDiv::Send {NumLock}
|