[flex] flex鼠标指针变为手型
xianbiao
2009-03-28
我想问一下怎么将鼠标的指针变为手型??
我知道在Flex中有Mouse类, 但不知道怎么将鼠标的指针变为手型?? |
|
xianbiao
2009-03-28
Sprite类中有useHandCursor属性
|
|
wills
2009-03-31
最常见的方式是设置DisplayObject对象[可是是Sprite,MovieClip,任何Flex UIComponent]的buttonMode为true
|
|
ghanasdo
2009-11-17
buttonMode和useHandCursor同时为true
|
|
kevinyao
2009-11-17
<mx:Label text="TestHandCusor" useHandCursor="true" buttonMode="true" mouseChildren="false" toolTip="Use Hand Cusor"/>
还要注意mouseChildren的设定. |
|
lzc0088
2009-11-20
ghanasdo 写道 buttonMode和useHandCursor同时为true
|
|
ling1987
2009-12-01
|