This link would help u

http://blog.flexexamples.com/2007/09/10/changing-the-cursor-in-a-flex-application-using-the-cursormanager-class/

or try this

<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"; layout="vertical">
    <mx:Script>
        <![CDATA[
            import mx.managers.CursorManager;
            [Bindable]
            [Embed(source="<yourimagepath>")]
            private var mycursor:Class;
            private var cursorID:int;
        ]]>
    </mx:Script>


    <mx:TextArea width="264" height="201" rollOver="cursorID =
CursorManager.setCursor(mycursor);"
        rollOut="CursorManager.removeCursor(cursorID);"/>


</mx:Application>

Iñaki.

On 6 March 2010 00:13, dennis <den...@anel.cc> wrote:

>
>
>  Hello to all…
>
>
>
> I use the textArea component as button. Great jog indeed! How may I change
> the mouse cursor to handpoint?
>
>
>
> With canvas, the follow code works:
>
>           CnvBtn.buttonMode=false;
>
>           CnvBtn.useHandCursor=false;
>
>
>
> The relatively for textArea has no effect.
>
>
>
> *dennis*
>
> ...*we are what we are doing*...  *P **Think! before you print.** *
>
>
>  
>

Reply via email to