Advertisement
Guest User

AutoHotKey: remap shift-control-c to PrintScreen

a guest
Mar 9th, 2016
264
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
  2. ; #Warn ; Enable warnings to assist with detecting common errors.
  3. SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
  4. SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
  5.  
  6. ; https://autohotkey.com/docs/KeyList.htm
  7. ; ! = Alt ^ = Ctrl + = Shift # = Win
  8. ; http://www.autohotkey.com/docs/commands.htm
  9. ; http://www.howtogeek.com/56481/the-beginners-guide-to-using-an-autohotkey-script/
  10. ; http://www.autohotkey.com/docs/Tutorial.htm#Launch
  11.  
  12. +^c::PrintScreen
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement