A Flash Developer Resource Site

Results 1 to 6 of 6

Thread: [AS3] Keyboard cursor out of textfield event

  1. #1
    Senior Member Sietjp's Avatar
    Join Date
    Jan 2005
    Location
    Paris, France
    Posts
    711

    [AS3] Keyboard cursor out of textfield event

    Hi,
    I looked around but I didn't find any event sent by the TextField whe the keyboard cursor enters or leaves the field ?

  2. #2
    Senior Member jweeks123's Avatar
    Join Date
    Mar 2006
    Posts
    1,124
    What exactly are you trying to do here, your post is quite vague. Could you be more specific? Then I may be able to help.

  3. #3
    Senior Member Sietjp's Avatar
    Join Date
    Jan 2005
    Location
    Paris, France
    Posts
    711
    Sorry for the delay and for being too vague.
    Actually I would like to know if the cursor/carret is inside an input text field.

    For example, let's say, the application listens to the spacebar event, and has to start a specific action when the use press the space bar. I would like to disable this action if the user is currently entering a text in an input text field.

  4. #4
    Senior Member Sietjp's Avatar
    Join Date
    Jan 2005
    Location
    Paris, France
    Posts
    711
    I've found out that I haev to use the focus mnager to know if the cursor is in the text field.
    PHP Code:
    if (stage.focus != myInputBoxthen doMyAction(); 

  5. #5
    a.k.a gltovar deadlock32's Avatar
    Join Date
    May 2001
    Location
    Naperville,IL
    Posts
    489
    Quote Originally Posted by Sietjp
    Hi,
    I looked around but I didn't find any event sent by the TextField whe the keyboard cursor enters or leaves the field ?
    I know you said you had a solution but

    Code:
    someTextField.addEventListener(FocusEvent.FOCUS_OUT, focusOutEvent);
    there are 4 available focus events:
    FOCUS_IN
    FOCUS_OUT
    KEY_FOCUS_CHANGE
    MOUSE_FOCUS_CHANGE

  6. #6
    Senior Member Sietjp's Avatar
    Join Date
    Jan 2005
    Location
    Paris, France
    Posts
    711
    Thanks (late)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  




Click Here to Expand Forum to Full Width

HTML5 Development Center