I'm not sure why the themeColor property isn't what you want. You can set it on instances of controls. Doing the following changes the outline color only for "ta1":
 
  <mx:TextArea id="ta1" height="100" width="200" text="This is the text" themeColor="red" />
 
Of course, you can also set it on, say, Application so that it affects all child controls since this style is inheritable:
 
 <mx:Application xmlns:mx="http://www.macromedia.com/2003/mxml" themeColor="0x114411">
 
hth,
 
matthew horn
flex docs


From: Rich Tretola [mailto:[EMAIL PROTECTED]
Sent: Saturday, February 12, 2005 12:20 PM
To: [email protected]
Subject: Re: [flexcoders] Highlight

That is what I was asking for, the name of the style that changes this
property.  Anyone else ?

Rich



On Fri, 11 Feb 2005 18:38:14 -0500, Jeff Tapper <[EMAIL PROTECTED]> wrote:
>
> Ah well, probably a style property for that in there somewhere, dont have
> it in front of me though.
>
> At 06:31 PM 2/11/2005, you wrote:
> >I don't want to change the whole theme, just the highlight.
> >
> >
> >On Fri, 11 Feb 2005 14:30:46 -0500, Jeff Tapper <[EMAIL PROTECTED]> wrote:
> > >
> > > Setting the themeColor style should effect that.
> > >
> > > At 02:21 PM 2/11/2005, you wrote:
> > > >Does anyone know how to change the style color for the hightlight that
> > > >appears on a textbox, combobox, etc that is currently in focus ?
> > > >
> > > >Rich

Reply via email to