码迷,mamicode.com
首页 > 其他好文 > 详细

Flex 文本编辑类控件 强制失去焦点问题

时间:2014-05-29 09:03:34      阅读:346      评论:0      收藏:0      [点我收藏+]

标签:style   c   a   ext   int   cti   

TextInput, RichEditableText, NumericStepper等类型的控件在获得焦点后.

有时需要他失去焦点时stage.focus=null;不能完全做到,因为focusmanager里还保存着个lastFocus,程序再次激活时会自动把它重新设置为焦点.

解决方法:

use namespace mx_internal;

focusManager.mx_internal::lastFocus = null;

 

示例:

protected function mouseFocusChangeHandler(event:FocusEvent):void

{
  if(stage && stage.focus && focusManager && focusManager.mx_internal::lastFocus == )
  {
    stage.focus=null;
    focusManager.mx_internal::lastFocus = null;
  }
}

<s:TextInput mouseFocusChange="mouseFocusChangeHandler(event)"/>

Flex 文本编辑类控件 强制失去焦点问题,布布扣,bubuko.com

Flex 文本编辑类控件 强制失去焦点问题

标签:style   c   a   ext   int   cti   

原文地址:http://www.cnblogs.com/tary-hit/p/3756671.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!