Tagged Questions

25
votes
8answers
10k views

How do you tell if caps lock is on using JavaScript?

How do you tell if caps lock is on using JavaScript? 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 ...
9
votes
3answers
1k 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 use it ...
8
votes
3answers
1k views

How to change caps lock status without key press

I am using a python program that is activate when pressing Caps Lock key and I want to be able to turn on/off the caps lock status when the program is active. I tried to send keys with virtkey but it ...
4
votes
3answers
5k 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 ...
3
votes
1answer
329 views

detect caps lock status on page load (or similar)

In my research, I've found how to detect capslock when the caps key is pressed. However, I want to know the caps status even in cases when the key is not touched. example: alert(ui.Keyboard.capslock) ...
3
votes
2answers
724 views

Anybody know how to toggle caps lock on/off in Python?

I'm trying to toggle caps lock on/off when the two shift buttons are held down for a second. I've tried using the virtkey module, but it's not working. That module does work for other keys though, so ...
2
votes
2answers
169 views

How do I light up the Caps Lock light with xset?

I wrote a little fetchmail script that checks the remote server and plays an audio file when I have new mail. I also wanted to also light up one of my keyboard lights when the mail was available but ...
2
votes
3answers
618 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 ...
1
vote
2answers
1k views

Way to turn on keyboard's caps-lock light without actually turning on caps-lock?

I'm writing a program that uses caps-lock as a toggle switch. It would be nice to set the LED of the key to show that my program is on or off, like the capslock key does naturally. I know that I ...
0
votes
1answer
127 views

Flex Keyboard.capslock returns always false in creationComplete

Im trying to notify user in login screen if CapsLock is on. In creationComplete Keyboard.capslock returns always false. Is there any workaround for this? Here is what i try: protected function ...
0
votes
0answers
146 views

ActionScript - Keyboard.CAPS_LOCK Bug?

the Keyboard.CAPS_LOCK constant is only checked if caps lock is off - the trace in my event handler below only fires every second time. it's like the runtime is confusing the Keyboard.CAPS_LOCK ...