我需要在文本字段中开发一些鼠标功能。
我可以通过htmlText&amp ;;获取点击功能的文字。 TextEvent,并将
同样,我可以在文本字段中获得鼠标悬停功能吗?
答案 0 :(得分:0)
为什么在点击功能上使用htmlText和TextEvent? flex中存在click功能。鼠标悬停在..
<?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute"> <mx:Script> <![CDATA[ public function clickHandler(event:MouseEvent):void{ //handle click here.. } public function mouseOverHandler(event:MouseEvent):void{ //handle mouse over event here.. } ]]> </mx:Script> <mx:Text x="84" y="72" text="Text" width="212" height="43" click="clickHandler(event)" mouseOver="mouseOverHandler(event)"/>
答案 1 :(得分:0)
private function onMouseOver(event:MouseEvent):void
{
Alert.show('Hello Ankur Sharma');
}
]]>
</mx:Script>
嘿,这是使用TextField完成的,如果你是在谈论TextField(我使用flex3)