vote up 2 vote down star
2

Here is what I am trying to accomplish:

  1. To Copy, press and release Caps Lock ONCE
  2. To Paste, press and release Caps Lock TWICE, quickly
  3. To Cut, press Ctrl+Caps Lock

The reason I want to do this is often times i find my self looking down to press the correct X/C/V key, since they're all next to each other (atleast on a QWERTY keyboard).

How can I do this on a standard keyboard (using Windows), so that it applies to the entire system and is transparent to all applications, including to Windows Explorer? If not possible with a standard keyboard, can any of the "programmable numeric keypads" do this you think?

In the above, by "transparent" I mean "the application should never know that this keystroke was translated. It only gets the regular Ctrl+X/C/V code, so it behaves without any problems".

Ps. Not sure of all the tags that are appropriate for this question, so feel free to add more tags.

SOLVED. UPDATE: Thank you to @Jonno_FTW for introducing me to AutoHotKey. I managed all three requirements by adding the following AHK script in the default AutoHotKey.ahk file in My Documents folder:

Ctrl & CapsLock::
  Send ^x
Return  	
CapsLock::
If (A_PriorHotKey = A_ThisHotKey and A_TimeSincePriorHotkey < 1000)
  Send ^v
Else
  Send ^c
Return

That was easy!

NOT COMPLETELY SOLVED. UPDATE: The above works in Notepad, but NOT in Explorer (copying files for example) or MS Office (even text copying does not work). So, I need to dig around a bit more into AutoHotKey or other solutions. Will post a solution here when I find one. In the meantime, if someone can make AutoHotKey work for everything I need, please reply!

ALL SOLVED. UPDATE: All I had to do was to change the capital "C"/X/Z to lowercase "c"/x/z. So Send ^C became Send ^c. It now works in ALL programs inlcuding Windows Explorer! Fixed code above to reflect this change.

flag

1  
@bobbymcr: I didn't know about the <kbd> tags. Thank you! – Liao Oct 11 at 6:57

2 Answers

vote up 3 vote down check

I believe the program you are looking for is: http://www.autohotkey.com/

link|flag
cool! My requirement (1) has been satisfied using AHK script CapsLock::^C. I think (3) also may be easy. I hope I can do (2)! This is a neat software! – Liao Oct 11 at 6:52
cooler! it seems (2) is easily met as well with this script: `CapsLock:: If (A_PriorHotKey = A_ThisHotKey and A_TimeSincePriorHotkey < 1000) Send ^V Return` Now I just need to read the documentation more on how to write a perfect script for my <kbd>Ctrl</kbd>+<kbd>X</kbd>/<kbd>C</kbd>/<kbd>V</kbd> needs. – Liao Oct 11 at 7:09
Oops. Why didn't the <kbd> tags work?! – Liao Oct 11 at 7:10
I'm no expert on the program so I can't offer any help, sorry – Jonno_FTW Oct 14 at 6:34
vote up 3 vote down

You need a Global Keyboard Hook.

link|flag
+1 for being correct, but please note that this method will almost certainly totally disable the caps lock key (though from the OP's examples, this is probably unavoidable, since copy is pressing the button once, ie. using it normally) – Matthew Scharley Oct 11 at 6:34
1  
i totally want to disable the CapsLock key, so thats fine with me. – Liao Oct 11 at 6:37

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.