The original pointer is the white cursor ya?
<?xml version="1.0" encoding="utf-8"?>
<mx:WindowedApplication xmlns:mx="http://www.adobe.com/2006/mxml"; 
layout="vertical" xmlns:flexlib="flexlib.*" 
xmlns:controls="flexlib.controls.*" 
xmlns:tabBarClasses="flexlib.controls.tabBarClasses.*" 
creationComplete="initApp()" >
<mx:Style source="styles.css"/>
<mx:Script>
<![CDATA[
import mx.containers.Panel;
import mx.collections.ArrayCollection;
[Bindable]
private var myArrayCollection:ArrayCollection = new 
ArrayCollection([{label:'Adobe'},{label:'Air'},{label:'Flex'}]);
private function initApp():void{
addEventListener(MouseEvent.MOUSE_OVER,onMouseOver);
}
private function onMouseOver(evnet:MouseEvent):void{
Mouse.hide();
}
]]>
</mx:Script>
<tabBarClasses:AdvancedTab closePolicy="close_rollover"/>
<controls:AdvancedTabBar dataProvider="{myArrayCollection}" labelField="label"/>
</mx:WindowedApplication>



----- Original Message ----
From: Sherif Abdou <[EMAIL PROTECTED]>
To: [email protected]
Sent: Wednesday, February 6, 2008 8:56:54 PM
Subject: Re: [flexcoders] Re: cursormanager and icons - can't seem to remove 
the original pointer

how are you setting this? cause i tried it and it worked for me Mouse.hide() ;


----- Original Message ----
From: maunger <[EMAIL PROTECTED] com>
To: [EMAIL PROTECTED] ups.com
Sent: Wednesday, February 6, 2008 8:54:23 PM
Subject: [flexcoders] Re: cursormanager and icons - can't seem to remove the 
original pointer


Another good try, but that isn't doing it either. Must be something else going 
on here.

--- In [EMAIL PROTECTED] ups.com, Sherif Abdou <[EMAIL PROTECTED] ..> wrote:
>
> Mouse.hide() ;
> 
> 
> ----- Original Message ----
> From: maunger <[EMAIL PROTECTED] >
> To: [EMAIL PROTECTED] ups.com
> Sent: Wednesday, February 6, 2008 8:30:50 PM
> Subject: [flexcoders] Re: cursormanager and icons - can't seem to remove the 
> original 
pointer
> 
> Thanks, but that hides my cursor and not the pointer icon. I put it before 
> the setCursor
> 
> CursorManager. hideCursor( );
> CursorManager. setCursor( pencilIcon, 99 ); 
> 
> didn't seem to help :(
> 
> --- In [EMAIL PROTECTED] ups.com, Sherif Abdou <sherif626@ ..> wrote:
> >
> > CursorManager. hideCursor( )
> > 
> > 







Never miss a thing. Make Yahoo your homepage. 



      
____________________________________________________________________________________
Be a better friend, newshound, and 
know-it-all with Yahoo! Mobile.  Try it now.  
http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ 

Reply via email to