在flex,mouseOver in TextInput以编程方式使用AS3?

时间:2010-07-26 21:46:39

标签: flex mouseevent textinput

在flex中,我可以添加mouseOver(在mx:TextInput中)事件,如下所示:mouseOver =“canvas1_mouseDownHandler(event)”

它不是TextInput的属性,所以如何在ActionScript中以编程方式执行?

1 个答案:

答案 0 :(得分:3)

您为文本输入添加了一个侦听器:

myTextInput.addEventListener(MouseEvent.MOUSE_OVER, mouseOverHandler);

希望有所帮助。