As I understand it, there is no backgroundColor style. What I did was
use a graphic fill:
override protected function
updateDisplayList(unscaledWidth:Number, unscaledHeight:Number):void
{
super.updateDisplayList(unscaledWidth, unscaledHeight);
var g:Graphics = graphics;
g.clear();
g.beginFill(0xBBBBBB);
g.drawRect(0, -2, unscaledWidth, unscaledHeight + 4);
g.endFill();
}
--- In [email protected], "vitaly.nikolenko" <v...@...> wrote:
>
> I tried to do something like that
> override protected function validateProperties()
> {
> super.validateProperties();
> setStyle('backgroundColor',0xFFFFFF);
> }
>
> it doesn't work
>
>
>
>
> --- In [email protected], "Tracy Spratt" tspratt@ wrote:
> >
> > How are you setting backgroundColor? Show some code.
> >
> >
> >
> > Tracy Spratt,
> >
> > Lariat Services, development services available
>