Flex 文本鼠标悬停功能

发布于 2024-10-03 20:48:15 字数 104 浏览 2 评论 0原文

我需要在文本字段中开发一些鼠标悬停功能。

我可以通过 htmlText & 来获取点击功能上的文本文本事件。

同样,我可以在文本字段中获得鼠标悬停功能吗?

I need to develop some mouse over functionality in text field.

I could get the text on click functionality by having htmlText & TextEvent.

Similarly, can i get the mouseover functionality in text field ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

压抑⊿情绪 2024-10-10 20:48:15

为什么使用 htmlText 和 TextEvent 来实现点击功能? Flex 中存在点击功能。鼠标悬停也是如此。

 
 
 
    


why use htmlText and TextEvent for on click functionality? click functionality is present in flex.So is mouse over..

     <?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)"/>
(り薆情海 2024-10-10 20:48:15
        private function onMouseOver(event:MouseEvent):void
        {
            Alert.show('Hello Ankur Sharma');
        }
    ]]>
</mx:Script>    

嘿,这是使用 TextField 完成的,如果你正在谈论 abt TextField(我使用了 flex3)

        private function onMouseOver(event:MouseEvent):void
        {
            Alert.show('Hello Ankur Sharma');
        }
    ]]>
</mx:Script>    

Hey this is done using TextField, if u were talkin abt TextField(i used flex3)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文