Try removing the quotes around the color value. On Nov 6, 2014 7:48 AM, "mark goldin" <[email protected]> wrote:
> I am using a label for my custom renderer:
>
> override public function set data(value:Object):void
> {
> super.data = value;
> if (value != null)
> {
> this.getTextField().background = true;
> this.getTextField().setStyle("backgroundColor", "0xFFA500");
> }
> }
> private function getTextField():*
> {
> return textField;
> }
>
> But I see no color.
>
> Thanks
>
