Re: [ANNOUNCE] Apache Flex 4.16.0 released

2017-03-15 Thread Carlos Rovira
Hi, just tweeted some minutes ago in our official Twitter Account. Please retweet to help spread the word. Thanks for making this possible. Carlos 2017-03-15 4:41 GMT+01:00 Justin Mclean : > Hi, > > The Apache Flex community is pleased to announce the release of Apache > Flex SDK 4.16.0 > > T

Re: [ANNOUNCE] Apache Flex 4.16.0 released

2017-03-15 Thread rodol...@essencialcode.com.br
Finally! -- View this message in context: http://apache-flex-users.246.n4.nabble.com/ANNOUNCE-Apache-Flex-4-16-0-released-tp14808p14811.html Sent from the Apache Flex Users mailing list archive at Nabble.com.

Re: [ANNOUNCE] Apache Flex 4.16.0 released

2017-03-15 Thread Benjamin Povirk
great! > On 15 Mar 2017, at 14:04, rodol...@essencialcode.com.br wrote: > > Finally! > > > > -- > View this message in context: > http://apache-flex-users.246.n4.nabble.com/ANNOUNCE-Apache-Flex-4-16-0-released-tp14808p14811.html > Sent from the Apache Flex Users mailing list archive at Nabble

Re: [ANNOUNCE] Apache Flex 4.16.0 released

2017-03-15 Thread pol2095
It's a good news but Air 25 is out. -- View this message in context: http://apache-flex-users.246.n4.nabble.com/ANNOUNCE-Apache-Flex-4-16-0-released-tp14808p14814.html Sent from the Apache Flex Users mailing list archive at Nabble.com.

Problems with TLF Tables

2017-03-15 Thread goratz
Hi all, I founded 3 different problems with TLF Tables. I created a report in Jira with an example code to test it. Here: https://issues.apache.org/jira/browse/FLEX-35286 1. I can't change the width of table after I gave one. You can found in the example as error_1() method. 2. I can't give to

Re: Problems with TLF Tables

2017-03-15 Thread Harbs
There’s lots of incomplete features with tables. I wish I could say that I could fix them, but there’s no way I have the time in the near future. It’s probably time to get your hands dirty and commit some fixes… ;-) Harbs > On Mar 15, 2017, at 6:06 PM, goratz wrote: > > Hi all, > > I found

Re: [ANNOUNCE] Apache Flex 4.16.0 released

2017-03-15 Thread Justin Mclean
Hi, > It's a good news but Air 25 is out. I believe the installer script just needs to be updated to support that. Thanks, Justin

How to set the color of a column chart item?

2017-03-15 Thread OK
Hi, I'm trying to set the border color of an item of a column chart [1]. The fill style works like a charm but the color of the border doesn't. Any ideas? Thanks, Olaf [1] colSeries = new ColumnSeries; colSeries.xField = xField; colSeries.yField = yField; colSeries.setStyle("fill", solidColor);

Re: How to set the color of a column chart item?

2017-03-15 Thread Clint M
i think the style you're looking for is stroke On Wed, Mar 15, 2017 at 2:39 PM, OK wrote: > Hi, > I'm trying to set the border color of an item of a column chart [1]. > The fill style works like a charm but the color of the border doesn't. > > Any ideas? > > Thanks, > Olaf > > [1] > colSeries =

SerializationException on blazeds-spring-boot-starter.4.7.3

2017-03-15 Thread skara
Hi I am using blazeds-spring-boot-starter.4.7.3 snapshot. I got an error "Creation validation for class 'example.dto.BasicDto' failed." at the time sending object data from flex to java. Any pointers to the cause and the solution will be a great help. error message: Deserializing AMF/HTTP request

Re: How to set the color of a column chart item?

2017-03-15 Thread OK
Yesss, that's it [1]. Thank you, Cliff!! Olaf [1] colSeries = new ColumnSeries; colSeries.xField = xField; colSeries.yField = yField; colSeries.setStyle("stroke", new SolidColorStroke(0x00)); -- View this message in context: http://apache-flex-users.246.n4.nabble.com/How-to-set-t