Flex小技巧积累--持续更新中

1.将鼠标样式由普通箭头形变为手型

 

useHandCursor="true"    buttonMode="true"   ouseChildren="false"

 使用方法:在组建的属性参数中添加上面三个属性

 

例子

 

<mx:PopUpButton id="popUpButton_pic" icon="@Embed('img/face.png')" openAlways="true" toolTip="请选择表情图片" width="67" height="26" useHandCursor="true" buttonMode="true">

 

 

<mx:Button id="Button_SendTxt" click="btnSendClickHandler(event)" label="发送消息" width="78" height="26" useHandCursor="true" buttonMode="true"/>

 

你可能感兴趣的:(Flex)