[Flashcoders] Focus Highlight with Components

2006-05-02 Thread John Giotta
Is there a way to remove the Focus highlight color on the Datagrid? No matter what I've tried I still get a green focus color. ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/m

RE: [Flashcoders] Focus Highlight with Components

2006-05-03 Thread Alexander, Mary
PM To: Flashcoders mailing list Subject: [Flashcoders] Focus Highlight with Components Is there a way to remove the Focus highlight color on the Datagrid? No matter what I've tried I still get a green focus color. ___ Flashcoders@chattyfig.figlea

Re: [Flashcoders] Focus Highlight with Components

2006-05-03 Thread John Giotta
datagrid.rollOverColor = yourBackgroundColor; datagrid.textRollOverColor = yourTextColor; I want to get rid of the light green glow around the Datagrid when ever the ScrollBar is focused. Not the row roll over. ___ Flashcoders@chattyfig.figleaf.com To

Re: [Flashcoders] Focus Highlight with Components

2006-05-05 Thread elibol
I think what you want is _focusrect. It's a MovieClip property, so you would have to target the movieclip instances that are recieving focus. myMC._focusrect = false; M. On 5/3/06, John Giotta <[EMAIL PROTECTED]> wrote: > datagrid.rollOverColor = yourBackgroundColor; > datagrid.textRollOverC

Re: [Flashcoders] Focus Highlight with Components

2006-05-05 Thread John Giotta
Thanks elibol, but not it. You'd have to see it for yourself if I'm not making any sense. I have a Datagrid in on SWF and another SWF is loading it. Whenever the ScrollBar of the Datagrid is focused, a light green halo forms around the entire Datagrid. That's what I want gone. __

Re: [Flashcoders] Focus Highlight with Components

2006-05-05 Thread Dimitrios Bendilas
OTECTED]> To: "Flashcoders mailing list" Sent: Friday, May 05, 2006 8:37 PM Subject: Re: [Flashcoders] Focus Highlight with Components Thanks elibol, but not it. You'd have to see it for yourself if I'm not making any sense. I have a Datagrid in on SWF and another SWF is loadi

Re: [Flashcoders] Focus Highlight with Components

2006-05-05 Thread elibol
Oh sorry, I don't have much experience with the v2 data grid. I think though you can pinpoint what is happening by overriding the scroll bars onRollOver event. Maybe if you could examine the source you would find out what the onRollOver may be delegated to. You might be able to see which event ca

Re: [Flashcoders] Focus Highlight with Components

2006-05-05 Thread elibol
I'm betting whatever function calls onRollOver has a function body like so: function(){ doScrollBarOverEffect(); maybeDoSomeOtherStuff(); highlightDataGrid(); // may not have such a descriptive name, but either a function or some procedural code would cause it. } On 5/5/06, elibol <[EMAIL PROTEC