Change print-screen key action

stu2000

New member
Local time
10:48 PM
Messages
14
Hello all,
Is it possible to set the print screen button to run an application/command rather than its current action of capturing desktop and putting the image data in the clipboard?

Stu
 

My Computer

Computer Manufacturer/Model Number
Dell
OS
Windows 7 Professional 64 bit version 6.1 build 7600
CPU
Duel core 2.66ghz
Memory
4 gigs
Graphics Card(s)
Geforce GTX 260
Check out this site for free Hotkey scripting language AutoHotkey or AHK
Index page • AutoHotkey Community

I recommend AutoHotkey_L variant as it has enhanced features.
AutoHotkey_L

They are free and there is a forum to ask for help.


What you want to do would be extremely easy in AHK. See the script below:

Code:
PrintScreen::
  run, notepad.exe ; change notepad to whatever program you want
return

When you run the program it sits in the task tray. As soon as you close it, the normal PrintScreen function returns.
 

My Computer

Computer Manufacturer/Model Number
HP Media Center
OS
Windows 7 32 bit
CPU
AMD 5200+ dual core
Memory
2 GB
Graphics Card(s)
NVidia GeForce 6150SE 128 MB
Monitor(s) Displays
CRT
Screen Resolution
1280x1024
Hard Drives
500 GB Sata internal :

SIIG USB 3.0 docking stations w/WD Caviar Black 6 Gb/s drives
Keyboard
PS/2
Mouse
PS/2 Wheel Mouse
Other Info
SIIG USB 3.0 PCIexpress card.
Back
Top