Re: Code review please... Re: git commit: [flex-asjs] [refs/heads/develop] - Add functionality to AS version of DataGrid to highlight entire row when rolling over any column JS version to follow after

2013-11-13 Thread OmPrakash Muppirala
On Tue, Nov 12, 2013 at 8:27 PM, Alex Harui wrote: > Hi Om, > > Looks good. Some points to ponder: > > 1) Ideally, in a Pay-as-you-go philosophy, a rolloverIndex would not be in > the ArraySelectionModel since, in theory, ArraySelectionModel should be > reusable in mobile devices where there is

[FLEXJS] WatcherBase error checking

2013-11-13 Thread Erik de Bruin
Hi, In the JS version of the WatcherBase class wrapUpdate method there is a significant amount of error handling that seems to be a literal translation of the AS side. On the JS side, since the error argument in the catch statement isn't typed at all, I don't see where the 'errorID' property (lin

Re: [FALCONJX/FLEXJS] stricter compilation

2013-11-13 Thread Erik de Bruin
>>I have a local branch in which I've made the FalconJx 'goog' compiler >>apply to the strictest possible rules/flags. This resulted in 193 >>warnings about bad code in the DataBindingTest example. Hidden behind >>those were some more errors ;-) > Is it an option you can turn on and off? Customer'

Re: [FALCONJX/FLEXJS] stricter compilation

2013-11-13 Thread Erik de Bruin
> I've published a 'develop_strictest' branch on both the 'flex-asjs' > and 'flex-falcon' projects. These need to live together to make the > magic happen. I fixed as much of the warnings as was possible given our setup. There are now 32 warnings left when publishing 'DataBindingTest', most seem r

Unable to get children from VBox

2013-11-13 Thread Seema Makkar
Hello all, This is very simple example, I want to get child from click method through rawChildren but giving null values. Below is the implementation, please help. I need to add List at runtime. http://ns.adobe.com/mxml/2009"; creationComplete="application1_creationCompleteHandler(event)"

Re: [FLEXJS] WatcherBase error checking

2013-11-13 Thread Alex Harui
On 11/13/13 1:22 AM, "Erik de Bruin" wrote: >Hi, > >In the JS version of the WatcherBase class wrapUpdate method there is >a significant amount of error handling that seems to be a literal >translation of the AS side. On the JS side, since the error argument >in the catch statement isn't typed

Re: [FALCONJX/FLEXJS] stricter compilation

2013-11-13 Thread Alex Harui
Fine with me. What will it take to get rid of the remaining 32? Also, I'm ok with the flag defaulting to true for now. Flex defaults to -strict already. -Alex On 11/13/13 3:01 AM, "Erik de Bruin" wrote: >> I've published a 'develop_strictest' branch on both the 'flex-asjs' >> and 'flex-falco

RE: Unable to get children from VBox

2013-11-13 Thread Michael A. Labriola
>wBox=vbox.rawChildren.getChildByName("lstControl"); >lstControl= new List(); >vbox.addChild(lstControl); This probably belongs on the user list. So, continued the discussion there. getChildByName() works based on the child's name, not the name of a variable that you used to instantiate and add

[FLEXJS] CSS value handling can't work in release code

2013-11-13 Thread Erik de Bruin
Hi, Alex, I hope I'm wrong, but... I was looking at the DataGridExample example and I couldn't get it to run from the release code. It runs fine from the debug code, just not the release code. I did a lot of digging and stepping through the code until I finally hit the 'init' method on the Simple

Re: Code review please... Re: git commit: [flex-asjs] [refs/heads/develop] - Add functionality to AS version of DataGrid to highlight entire row when rolling over any column JS version to follow after

2013-11-13 Thread Peter Ent
On 11/13/13 3:19 AM, "OmPrakash Muppirala" wrote: >On Tue, Nov 12, 2013 at 8:27 PM, Alex Harui wrote: > >> Hi Om, >> >> Looks good. Some points to ponder: >> >> 1) Ideally, in a Pay-as-you-go philosophy, a rolloverIndex would not be >>in >> the ArraySelectionModel since, in theory, ArraySelec

Re: [FLEXJS] CSS value handling can't work in release code

2013-11-13 Thread Erik de Bruin
One thought is that we might store both the 'name' and the 'qName' in the class metadata (where currently only the interfaces - if any - live) and adopt the 'getValue' routines to search that instead of the entire namespace chain. This would get rid of the need for the dreaded '__proto__' as well.

[FLEXJS] ItemRenderers

2013-11-13 Thread Peter Ent
Hi, I've pushed code to get custom itemRenderers working. Many thanks to Alex and Erik for their work getting the foundation parts to work smoothly. I studied the changes Erik made in hopes of making the code I was working on conform, especially around interfaces. Things seem to work ok with a

RE: How to play a stream video on the my ipad

2013-11-13 Thread Bill Turner
In my previous job, I worked with live video, and live streaming video via RTMP does work on mobile devices. The iOS devices don't support H.264 RTMP video, though, as listed in the NetStream info you attached. If the video is H.263, everything is fine (but bandwidth for the same quality video

Re: [FLEXJS] CSS value handling can't work in release code

2013-11-13 Thread Alex Harui
On 11/13/13 8:25 AM, "Erik de Bruin" wrote: >One thought is that we might store both the 'name' and the 'qName' in >the class metadata (where currently only the interfaces - if any - >live) and adopt the 'getValue' routines to search that instead of the >entire namespace chain. This would get r

Re: [FLEXJS] ItemRenderers

2013-11-13 Thread Erik de Bruin
Peter, I'm pretty sure I fixed this and created tests to keep an eye on it. Did you get the latest FalconJx code and do a clean build? EdB On Wed, Nov 13, 2013 at 5:30 PM, Peter Ent wrote: > Hi, > > I've pushed code to get custom itemRenderers working. Many thanks to Alex and > Erik for their

Re: [FLEXJS] CSS value handling can't work in release code

2013-11-13 Thread Erik de Bruin
I'll look what I can come up with... but before we continue and this framework becomes too big too "easily" refactor, we really, really need to get some functional tests in place. Otherwise we'll all only look at our private little example projects and only notice we broke something when someone el

Re: Build failed in Jenkins: flex-sdk_mustella #531

2013-11-13 Thread Erik de Bruin
Bump... EdB On Wed, Nov 13, 2013 at 6:16 PM, wrote: > See > > -- > [...truncated 86229 lines...] > [java] cmdArr after: > [java] > C:\ApacheFlex\dependencies\FlashPlayer_Debug\fl

Re: [FLEXJS] CSS value handling can't work in release code

2013-11-13 Thread Alex Harui
On 11/13/13 9:39 AM, "Erik de Bruin" wrote: >I'll look what I can come up with... but before we continue and this >framework becomes too big too "easily" refactor, we really, really >need to get some functional tests in place. Otherwise we'll all only >look at our private little example project

Re: [FLEXJS] CSS value handling can't work in release code

2013-11-13 Thread Erik de Bruin
That sounds like a good place to start. Ideally the test would be a project we all work on, or a project we all extend and use as a reference, next to our own projects. EdB On Wed, Nov 13, 2013 at 7:06 PM, Alex Harui wrote: > > > On 11/13/13 9:39 AM, "Erik de Bruin" wrote: > >>I'll look what

Re: [FLEXJS] CSS value handling can't work in release code

2013-11-13 Thread OmPrakash Muppirala
On Wed, Nov 13, 2013 at 10:16 AM, Erik de Bruin wrote: > That sounds like a good place to start. Ideally the test would be a > project we all work on, or a project we all extend and use as a > reference, next to our own projects. > > EdB > > I have been thinking of creating a 'kitchen sink' app f

Re: [FLEXJS] CSS value handling can't work in release code

2013-11-13 Thread Alex Harui
On 11/13/13 10:23 AM, "OmPrakash Muppirala" wrote: >On Wed, Nov 13, 2013 at 10:16 AM, Erik de Bruin >wrote: > >> That sounds like a good place to start. Ideally the test would be a >> project we all work on, or a project we all extend and use as a >> reference, next to our own projects. >> >>

Re: [FLEXJS] CSS value handling can't work in release code

2013-11-13 Thread Erik de Bruin
>> That sounds like a good place to start. Ideally the test would be a >> project we all work on, or a project we all extend and use as a >> reference, next to our own projects. > I have been thinking of creating a 'kitchen sink' app for FlexJS that would > double as a public example as well. I am

Re: [FLEXJS] CSS value handling can't work in release code

2013-11-13 Thread Erik de Bruin
>>One thought is that we might store both the 'name' and the 'qName' in >>the class metadata (where currently only the interfaces - if any - >>live) and adopt the 'getValue' routines to search that instead of the >>entire namespace chain. This would get rid of the need for the dreaded >>'__proto__'

Re: Code review please... Re: git commit: [flex-asjs] [refs/heads/develop] - Add functionality to AS version of DataGrid to highlight entire row when rolling over any column JS version to follow after

2013-11-13 Thread Alex Harui
On 11/13/13 8:17 AM, "Peter Ent" wrote: > > >On 11/13/13 3:19 AM, "OmPrakash Muppirala" wrote: > >>On Tue, Nov 12, 2013 at 8:27 PM, Alex Harui wrote: >> >>> Hi Om, >>> >>> Looks good. Some points to ponder: >>> >>> 1) Ideally, in a Pay-as-you-go philosophy, a rolloverIndex would not be >>>in

Re: Code review please... Re: git commit: [flex-asjs] [refs/heads/develop] - Add functionality to AS version of DataGrid to highlight entire row when rolling over any column JS version to follow after

2013-11-13 Thread OmPrakash Muppirala
On Wed, Nov 13, 2013 at 11:37 AM, Alex Harui wrote: > > > On 11/13/13 8:17 AM, "Peter Ent" wrote: > > > > > > >On 11/13/13 3:19 AM, "OmPrakash Muppirala" wrote: > > > >>On Tue, Nov 12, 2013 at 8:27 PM, Alex Harui wrote: > >> > >>> Hi Om, > >>> > >>> Looks good. Some points to ponder: > >>> >

Question on StringUtil.trim

2013-11-13 Thread Maurice Amsellem
Hi, I have noticed that trim will return a copy of the string argument even if there are no spaces, instead of returning the original string. public static function trim(str:String):String { ... if (endIndex >= startIndex) return str.slice(startIndex, endIndex + 1); else

Re: Focusing on TabNavigator tab

2013-11-13 Thread Oleg Konovalov
Works great, Alex. Thanks a lot! Oleg. On Tue, Nov 12, 2013 at 2:59 PM, Alex Harui wrote: > setFocus() is about what component will get keyboard input. I think you > are using "tab" to mean a TabNavigator child which is a container which > never gets focus. Only some control like a TextInput

Re: Question on StringUtil.trim

2013-11-13 Thread Alex Harui
On 11/13/13 3:35 PM, "Maurice Amsellem" wrote: >Hi, > >I have noticed that trim will return a copy of the string argument even >if there are no spaces, instead of returning the original string. >Is that intended behavior (maybe for compatibility, or something ...) ? No idea. I was trying to

Re: Code review please... Re: git commit: [flex-asjs] [refs/heads/develop] - Add functionality to AS version of DataGrid to highlight entire row when rolling over any column JS version to follow after

2013-11-13 Thread Alex Harui
On 11/13/13 1:33 PM, "OmPrakash Muppirala" wrote: > >The usecase here is that there are n Lists (for each column) composed by >the DataGrid component. If the users rollsover an on any list, the >corresponding itemrenderers in each column must highlight themselves. So, >keeping track of the cur

[ANNOUNCE] Welcome Maurice as the newest PMC member

2013-11-13 Thread Justin Mclean
Hi, For all his hard work the Apache Flex PMC has voted Maurice in as a PMC member. Congratulations Maurice. Thanks, Justin

RE: Question on StringUtil.trim

2013-11-13 Thread Michael A. Labriola
>No idea. I was trying to think of any danger of manipulating the returned >string if it is the original and not always a copy, but I can't think of >anything off-hand. >Is it much faster to add the check and return the original? Aren't AS strings immutable anyway? So, the method got a copy t

Re: Code review please... Re: git commit: [flex-asjs] [refs/heads/develop] - Add functionality to AS version of DataGrid to highlight entire row when rolling over any column JS version to follow after

2013-11-13 Thread OmPrakash Muppirala
On Nov 13, 2013 8:05 PM, "Alex Harui" wrote: > > > > On 11/13/13 1:33 PM, "OmPrakash Muppirala" wrote: > > > >The usecase here is that there are n Lists (for each column) composed by > >the DataGrid component. If the users rollsover an on any list, the > >corresponding itemrenderers in each colu

Re: Question on StringUtil.trim

2013-11-13 Thread Alex Harui
On 11/13/13 8:23 PM, "labri...@digitalprimates.net" wrote: >>No idea. I was trying to think of any danger of manipulating the >>returned string if it is the original and not always a copy, but I can't >>think of anything off-hand. > >>Is it much faster to add the check and return the original?

[VOTE][RESULT] Apache Flex guidelines

2013-11-13 Thread Justin Mclean
Hi, The vote has passed with 11 +1 binding votes. +1 voters: Nicholas Kwiatkowski Maurice Amseliem Jun Heider Frederic Thomas OmPrakash Muppiraia Harbs Gordon Smith Alex Harui Mark Kessier Erik de Bruin Justin Mclean Do we need to notify the board we now have guidelines? Even if that just putti

Re: Code review please... Re: git commit: [flex-asjs] [refs/heads/develop] - Add functionality to AS version of DataGrid to highlight entire row when rolling over any column JS version to follow after

2013-11-13 Thread Alex Harui
On 11/13/13 8:26 PM, "OmPrakash Muppirala" wrote: >I think I get it, but I guess I will need some pseudo code to understand >completely. What exactly does 'hang it on a strand' man in this context? > >Thanks, >Om I looked at the commit diffs again. I missed seeing earlier that you want to pro

[OT] How to contribute to Apache Flex talk in Sydney

2013-11-13 Thread Justin Mclean
Hi, For anyone in the Sydney Australia area I'm giving a talk on how to contribute to Apache Flex at the local Adobe Platform Users Group meetup. http://www.meetup.com/Sydney-Adobe-Platform-User-Group/events/136649902/ Also happy to answer any other question in person on Apache Flex. Thanks, Ju

Re: [ANNOUNCE] Welcome Maurice as the newest PMC member

2013-11-13 Thread Erik de Bruin
Welcome Maurice! Well deserved. I'm looking forward to your continued contributions. EdB On Thu, Nov 14, 2013 at 5:11 AM, Justin Mclean wrote: > Hi, > > For all his hard work the Apache Flex PMC has voted Maurice in as a PMC > member. Congratulations Maurice. > > Thanks, > Justin -- Ix

RE: [ANNOUNCE] Welcome Maurice as the newest PMC member

2013-11-13 Thread Sugan Naicker
Hi, Congrats Maurice! I have been following your posts... Regards, Sugan Naicker Dev-X Digital Solutions (Pty) Ltd South Africa -Original Message- From: Justin Mclean [mailto:jus...@classsoftware.com] Sent: 14 November 2013 06:11 AM To: dev@flex.apache.org Subject: [ANNOUNCE] Welcome

Re: [ANNOUNCE] Welcome Maurice as the newest PMC member

2013-11-13 Thread piotr.zarzycki
Wow! Great news! Congratulations Maurice! :) - Flex/Air developer open to new job offers and challenges. piotrzarzyck...@gmail.com -- View this message in context: http://apache-flex-development.247.n4.nabble.com/ANNOUNCE-Welcome-Maurice-as-the-newest-PMC-member-tp32214p32223.html Se

WANT TO OPEN SOURCE MY PROJECT

2013-11-13 Thread Shivang
Hello all... I am a flex guy from last 4 years.I just want to post my project on the apache site so that peoples can see what flex can done..I will open source this but don't know how.. You can check the demo from the link below and give your precious feedbacks.. http://www.inkfi.com/demo/wpflex/

RE: [ANNOUNCE] Welcome Maurice as the newest PMC member

2013-11-13 Thread Maurice Amsellem
Thanks Justin, Erik, Sugan and Piotr. Thanks to the Flex PMC for accepting me. I will do my best to contribute to Apache Flex thriving. Regards, Maurice -Message d'origine- De : piotr.zarzycki [mailto:piotrzarzyck...@gmail.com] Envoyé : jeudi 14 novembre 2013 08:21 À : dev@flex.apache

WANT TO OPEN SOURCE MY PROJECT

2013-11-13 Thread Shivang
Hello all.. I am a flex guy from last 4 years.I just want to post my project on the apache site so that peoples can see what flex can done..I will open source this but don't know how.. You can check the demo from the link below and give your precious feedbacks.. http://www.inkfi.com/demo/wpflex/

Re: [ANNOUNCE] Welcome Maurice as the newest PMC member

2013-11-13 Thread Shivang Gupta
Congrats Maurice.. - Shivang Gupta Skype -> sanghi.shivang GTalk -> shivangsan...@gmail.com -- View this message in context: http://apache-flex-development.247.n4.nabble.com/ANNOUNCE-Welcome-Maurice-as-the-newest-PMC-member-tp32214p32227.html Sent from the Apache Flex Development m