Flex: Как установить руку курсор?

Я пытаюсь установить курсор в виде руки на HBox. Я пробовал buttonMode и useHandCursor, но мне не повезло. В этом примере отображается курсор занятости. Может кто подскажет, как заставить отображать курсор в виде руки flashPlayer?

<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" 
           xmlns:s="library://ns.adobe.com/flex/spark" 
           xmlns:mx="library://ns.adobe.com/flex/mx" xmlns:components="com.dn2k.components.*"  >

<fx:Script>
    <![CDATA[
        private var cursorID:int;
        //cursorManager

        protected function box_mouseOverHandler(event:MouseEvent):void
        {
            cursorManager.setBusyCursor()
        }
    ]]>
</fx:Script>

<mx:HBox id="box" useHandCursor="true" buttonMode="true" mouseChildren="false" backgroundColor="0xcc0000" mouseOver="box_mouseOverHandler(event)">
    <s:Label text="Hiya sexy..."/>
</mx:HBox>

8
задан Squiff 12 August 2011 в 18:07
поделиться