2
votes
2answers
107 views
How to hijack the Caps Lock key for Cut, Copy, Paste keyboard operations
Here is what I am trying to accomplish:
To Copy, press and release Caps Lock ONCE
To Paste, press and release Caps Lock TWICE, quickly
To Cut, press Ctrl+Caps Lock
The reason I want to do this is …
1
vote
3answers
214 views
How can I find the state of NumLock, CapsLock and ScrollLock in .net ?
How can I find the state of NumLock, CapsLock and ScrollLock keys in .net ?
5
votes
1answer
184 views
Override Caps Lock with Ctrl using C#
I'm writing (yet another, I know) keyboard remapper using C# and Visual Studio 2008.
I followed this guide to learn how to snap up low-level key presses. This works just fine for overriding e.g. …
1
vote
1answer
127 views
How do I swap CTRL and CAPS LOCK on Carbon Emacs on OSX without doing it OS-wide?
I've recently started learning emacs since I was unhappy with Textmate and as a starting point read the "Effective Emacs" article by Steve Yegge. I was very keen on his CTRL -> CAPS LOCK swap, but I …
2
votes
2answers
167 views
Is it possible to programmatically disable the Caps Lock key on Windows?
The Caps Lock key is driving me nuts - I never use it intentionally, but sometimes accidentially press it instead of TAB. My current solution is to remove the button with a screwdriver (no damage, can …
4
votes
4answers
1k views
How do you tell if caps lock is on using javascript?
The question title says it all really. One caveat though: I did google it and the best solution I could find was to attach an onkeypress event to every input, then check each time if the letter …
5
votes
2answers
342 views
Change keyboard locks in Python
Is there any way, in Python, to "programmatically" (:-) change the CAPS LOCK/NUM LOCK/SCROLL LOCK states. This isn't really a joke question - more like a real question for a joke program. I intend to …
