Flex 鼠标移入组件/TextField变手型

前端之家收集整理的这篇文章主要介绍了Flex 鼠标移入组件/TextField变手型前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

如下代码所示

<mx:VideoDisplay id="vid" autoPlay="false" source="{_vidData}" width="280" height="250" 
  click="vid_clickHandler(event)" useHandCursor="true"  buttonMode="true"  mouseChildren="false"/>

在组件中添加如下属性即可:

useHandCursor="true"  buttonMode="true"  mouseChildren="false"


让鼠标移动于TextField上方时显示为手型  

var txt:TextField = new TextField();txt.x = 10;txt.y = 10;txt.autoSize = "left";txt.selectable = false;txt.htmlText = "<a href='event:#'>显示手形的TextField</a>";addChild(txt)

猜你在找的Flex相关文章