vote up 3 vote down star

Similar to the XP login screen, in Flex 3, how can I display a warning to the user in a textbox that the CAPS LOCK key is enabled?

flag

58% accept rate

2 Answers

vote up 2 vote down

flash.ui.Keyboard.capsLock is not bindable so that code won't really work.

I would invoke a function in the "keyDown" event for the TextInput and then check flash.ui.Keyboard.capsLock in that function. You can then set visible/includeInLayout on that Text, pop up an Alert, etc...

link|flag
vote up 1 vote down

In actionScript:


if(flash.ui.Keyboard.capsLock){
    // caps lock is on...
}

or MXML:


<mx:Box width="100%" id="capsbox"
    visible="{flash.ui.Keyboard.capsLock}" 
    includeInLayout="{capsbox.visible}">
        <mx:Text text="Caps Lock is on." color="red" />
</mx:Box>

link|flag
I created a blank form and dropped it on the form. It doesn't work, even if CAPS LOCK is on when I start the app. Do I need a keyboard handler? – troylar Dec 18 '08 at 15:08

Your Answer

Get an OpenID
or

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