Tagged Questions
The capslock tag has no wiki summary.
37
votes
9answers
11k views
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 ...
14
votes
6answers
593 views
POST vs post, GET vs get
I realize that both will work, but is one more correct than the other?
<form method="POST" />
vs.
<form method="post" />
Why use one or the other?
9
votes
2answers
228 views
Is there a way how to detect IE10's “Caps Lock is on” feature?
As you probably know, there is a relatively simple way how to, more or less reliably, detect whether Caps Lock is on, especially when user starts typing into password fields. However, it is a quite ...
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 ...
8
votes
5answers
1k views
Why is so complicated to remap Esc to CAP LOCK in Vim?
I saw the vim wiki tips and it says that in order to remap Esc to CAP LOCK you have to edit the following windows code:
REGEDIT4
[HKEY_CURRENT_USER\Keyboard Layout]
"Scancode ...
7
votes
6answers
2k views
Qt - Password field
Is there any Qt-built-in method to warn user (with pop-up window) that CapsLock is switched on while password field is active?
I am using for passford field QLineEdit (is it good?) with ...
6
votes
1answer
277 views
Delphi 2010 virtual keyboard, start with CapsLock on?
Delphi 2010 Enterprise
How can I automatically turn the CapsLock on when the virtual keyboard is displayed.
6
votes
1answer
977 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. ...
5
votes
4answers
3k views
How to map CAPS LOCK key in VIM?
I'm using GVIM under Windows.
And want to map CAPSLOCK to Ctrl+^
Any way to do this?
Btw, I see tons of samples over the web how to swap CAPS and Esc using registry hack, but none of them use VIM ...
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
2answers
80 views
Emacs caps lock minor mode?
Is there a command in Emacs to turn on what might be described as "caps lock minor mode"? I'm looking to do something like M-x toggle-caps-mode, then every letter I type in the buffer is a capital ...
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
726 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 ...
3
votes
4answers
1k 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 ?
2
votes
2answers
170 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
2answers
273 views
How can I get the Caps Lock state, and set it to on, if it isn't already?
I would like a specific example on how to turn caps lock on if it is off.
I know how to toggle the key, I have been using this:
toolkit.setLockingKeyState(KeyEvent.VK_CAPS_LOCK, Boolean.TRUE);
...
2
votes
2answers
369 views
Detect Caps Lock in Python curses
For such a basic question, I'm surprised I couldn't find anything by searching...
Anyways, I made a curses app in Python that assists in solving puzzles of a certain DSiWare game. With it, you can ...
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
1answer
147 views
How to simulate Caps Lock keystroke with CGEventCreateKeyboardEvent in OS X
Has anyone had any luck simulating Caps Lock keystroke with CGEventCreateKeyboardEvent on OS X? Basically I have tried alphabetic character and alphanumeric character okay but Caps Lock. Hopefully, I ...
1
vote
1answer
387 views
Can't block capslock with CGEventTap
I'm using Quartz CGEventTap in an attempt to globally intercept capslock presses and block them (to have them do something useful instead). I succesfully detect capslock presses but have so far been ...
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 ...
1
vote
1answer
342 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 ...
0
votes
1answer
36 views
using GetKeyState(VK_CAPITAL) & 1 in linux
#include <windows.h>
int main() {
if ( !GetKeyState(VK_CAPITAL) & 1 ) {
printf("caps off");
}
else
printf("caps on");
return 0;
}
but limited to windows only
how to do this in linux ...
0
votes
1answer
145 views
Programatically disable caps lock
I'm using SendKeys in an automation program for work. I've been plodding along, and am now trying to iron out all the bugs that I've created :-)
One of which, is that when I used ...
0
votes
0answers
100 views
Javascript: How to detect if CapsLock is on when application loads (without typing anything)? [closed]
Possible Duplicate:
How do you tell if caps lock is on using JavaScript?
I would like to detect the state of CapsLock immediately after my application loads (without waiting until user ...
0
votes
3answers
158 views
Bind to Caps Lock
Hi I'm building a login screen in wpf and I'm trying to figure out how to Bind a part of my code to only be visible when the Caps lock key is on.
<StackPanel Grid.Row="3" Grid.ColumnSpan="2" ...
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
2answers
170 views
Best way to intercept pressing of Caps Lock
What is the best way to intercept the Caps Lock button on Windows, for making a program like Launchy?
Currently, I'm setting a low-level hook with SetWindowsHookEx, but that's a bit too low-level for ...
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 ...
0
votes
2answers
537 views
Get and set Num/Caps/Scroll-lock status in Mono C#
Is thyere a way in Mono.Net to get and set the Num/Caps/Scroll-lock status platform independent (Linux and Windows)?
Thanks in advance.
0
votes
1answer
863 views
Caps Lock script cleanup
I was wondering if someone could help me clean up this code if possible; including merging the two functions into one. I'm new to javascript so I could really use some help.
I was able to get this ...
0
votes
3answers
1k views
WPF. Warn about CapsLock
I have a DataGridTemplateColumn with DataTemplate as a PasswordBox.
I want to warn user if CapsLock is toggled.
private void PasswordBox_PasswordChanged(object sender, RoutedEventArgs e)
{
...