Re: [FlexJS] background colour bug

2017-02-14 Thread Justin Mclean
Hi, This bug is in applyStyles in SimpleCSSCalueImpl.as, the applyStyles method have a list of styles it expect to see colour values in (colorStyles) but it’s looking for “”backgroundColor" not "background-color”. Thanks, Justin

Re: [FlexJS] background colour bug

2017-02-11 Thread Justin Mclean
Hi, I've raised a JIRA for this: https://issues.apache.org/jira/browse/FLEX-35261 Thanks, Justin

Re: [FlexJS] background colour bug

2017-02-11 Thread Harbs
Confirmed. It looks like it parses the color into an integer value, and it never gets saved as a hex value in the styles. > On Feb 12, 2017, at 5:57 AM, Justin Mclean wrote: > > Hi, > > Looks like this works (ie you get a big red square): > > > http://ns.adobe.com/mxml/2009"; >

[FlexJS] background colour bug

2017-02-11 Thread Justin Mclean
Hi, Looks like this works (ie you get a big red square): http://ns.adobe.com/mxml/2009"; xmlns:js="library://ns.apache.org/flexjs/basic"> However using HTML RGB value like this doesn’t seem to work: Anyone confirm an