Re: git commit: [flex-utilities] [refs/heads/develop] - cleaned up button width code

2013-09-29 Thread Justin Mclean
Hi, > Doing so, it means the button width may vary depending of where the button > is ? Some buttons are set sizes, other vary. > I mean the maxButtonWidth takes an array, this array is supposed to be > the set of buttons on a given state of the app, right ? No it the set of buttons it checks f

RE: git commit: [flex-utilities] [refs/heads/develop] - cleaned up button width code

2013-09-29 Thread Frédéric THOMAS
Doing so, it means the button width may vary depending of where the button is ? I mean the maxButtonWidth takes an array, this array is supposed to be the set of buttons on a given state of the app, right ? The previous behavior was to set the standardButtonWidth to the max width of the all set o

Re:Air Stage Text Issue

2013-09-29 Thread DarkStone
My solution for this issue is: Write your own Class named VisualStageText which extends the SpriteVisualElement Class and implements the IEditableText interface, and two properties have to be declared: 1. stageText:StageText, which is used for renderering the actual text. 2. target:IVisualElem

Re: Air Stage Text Issue

2013-09-29 Thread Flexicious.com
Yup saw that - should resolve the issue with the scroller getting out of whack. Probably will make scrolling expensive, but alteast usable. but still has the issue of the text showing through stuff (like dropdowns and popups and such). So basically we need to evaulate objects underneath these popup

Re: Air Stage Text Issue

2013-09-29 Thread jude
Not so much gracefully but this might help, http://stackoverflow.com/questions/14412301/flex-textarea-and-textinput-on-mobile-not-positioning-correctly. On Sun, Sep 29, 2013 at 9:28 PM, Flexicious.com wrote: > This may not be a Flex/Apache issue, but just wanted to see if anyone has > been su

Air Stage Text Issue

2013-09-29 Thread Flexicious.com
This may not be a Flex/Apache issue, but just wanted to see if anyone has been successful with text on Air mobile. The issue basically revolves around the native text input. It is rendered on top of the display list, and it does not scroll within its parent scroller. So dropdowns and such that ren

RE: Please welcome Maurice Amsellem as our newest committer

2013-09-29 Thread Maurice Amsellem
Thanks Mark -Message d'origine- De : Mark Kessler [mailto:kesslerconsult...@gmail.com] Envoyé : lundi 30 septembre 2013 03:31 À : Dev@Flex Objet : Re: Please welcome Maurice Amsellem as our newest committer Gratz and Welcome! -Mark On Sun, Sep 29, 2013 at 10:40 AM, Erik de Bruin wrot

Re: Please welcome Maurice Amsellem as our newest committer

2013-09-29 Thread Mark Kessler
Gratz and Welcome! -Mark On Sun, Sep 29, 2013 at 10:40 AM, Erik de Bruin wrote: > Hi, > > I am pleased to announce that the Project Management Committee (PMC) > for Apache Flex has invited Maurice Amsellem to become a committer and > he has accepted. > > Maurice has been very active on the mai

RE: Please welcome Maurice Amsellem as our newest committer

2013-09-29 Thread Maurice Amsellem
Thanks Igor -Message d'origine- De : Igor Costa [mailto:igorco...@gmail.com] Envoyé : lundi 30 septembre 2013 03:07 À : dev@flex.apache.org Objet : Re: Please welcome Maurice Amsellem as our newest committer welcome aboard. Igor Costa www.igorcosta.com www.i

Re: Please welcome Maurice Amsellem as our newest committer

2013-09-29 Thread Igor Costa
welcome aboard. Igor Costa www.igorcosta.com www.igorcosta.org On Sun, Sep 29, 2013 at 7:52 PM, Maurice Amsellem < maurice.amsel...@systar.com> wrote: > Thanks Justin. > > Maurice > > -Message d'origine- > De : Justin Mclean [mailto:jus...@classsoftware.com]

Issue with line ending when commiting / pushing to GIT with IntelliJ (solved)

2013-09-29 Thread Maurice Amsellem
Hi, I solved an issue when trying to modify files from flex-sdk using IntelliJ, and thought some of you may be interested. This is only with IntelliJ, so FB or other IDE users can skip this message. I was having trouble trying to preserve line endings when committing changes with IntelliJ. Ev

Re: [Intaller] Speed up download

2013-09-29 Thread Justin Mclean
Hi, I've mode in a good start on how to calculate the button widths, will check in shortly: - Move code to own class and simplified removing duplicate code - Removed unneeded setters and getters - Remove unneeded bindable properties, width can be set directly on the buttons - Removed custom even

RE: Please welcome Maurice Amsellem as our newest committer

2013-09-29 Thread Maurice Amsellem
Thanks Justin. Maurice -Message d'origine- De : Justin Mclean [mailto:jus...@classsoftware.com] Envoyé : dimanche 29 septembre 2013 23:20 À : dev@flex.apache.org Objet : Re: Please welcome Maurice Amsellem as our newest committer Hi, Welcome aboard and thanks for the code donation. Ju

RE: [Intaller] Speed up download

2013-09-29 Thread Frédéric THOMAS
I'll still be able to read you for a bit but I need to go to bed and the computer there has no keyboard, I mean not really usable. -Fred -Message d'origine- De : Justin Mclean [mailto:jus...@classsoftware.com] Envoyé : lundi 30 septembre 2013 00:13 À : dev@flex.apache.org Objet : Re: [In

Re: [Intaller] Speed up download

2013-09-29 Thread Justin Mclean
Hi, > Trying to do that I hit the computeStandardButtonWidth() which involve every > components Looks easy enough move computeStandardButtonWidth to it own class in the utils package and pass standardButtonWidth into each component. > with text and the _langSelect which is involved in the first

RE: [Intaller] Speed up download

2013-09-29 Thread Frédéric THOMAS
Trying to do that I hit the computeStandardButtonWidth() which involve every components with text and the _langSelect which is involved in the first step, I didn't find any elegant way to manage them. -Fred -Message d'origine- De : Justin Mclean [mailto:jus...@classsoftware.com] Envoyé :

Re: [Intaller] Speed up download

2013-09-29 Thread Justin Mclean
Hi, I'd start by breaking up the MXML into components, some of the data model will fall out of that. Then try to make the new components loosely coupled with events (and event bubbling if required) and the data model will start defining itself. Thanks, Justin

RE: [Intaller] Speed up download

2013-09-29 Thread Frédéric THOMAS
Moreover, when I tried to split it today, I really felt a lack of models and commands, the whole thing was monolithic and interlaced enough to make it difficult to split without to be rethought and I thought first MVC but it could be because that's my way to do, in the same time, I'm not sure choos

RE: [Intaller] Speed up download

2013-09-29 Thread Frédéric THOMAS
I don't want by force involve a framework, it is just because there are or will be parallel / sequential tasks having to do with external data, using a known one helping with could be appropriated but for sure we can always do without. -Fred -Message d'origine- De : Justin Mclean [mailto:

Re: [Intaller] Speed up download

2013-09-29 Thread Justin Mclean
Hi, The installer code is reasonably straight forward. IMO there's probably not a huge reason to use a framework, I'd just try refactoring it into several classes first. Thanks, Justin

Re: Please welcome Maurice Amsellem as our newest committer

2013-09-29 Thread Justin Mclean
Hi, Welcome aboard and thanks for the code donation. Justin

RE: [Intaller] Speed up download

2013-09-29 Thread OmPrakash Muppirala
On Sep 29, 2013 2:01 PM, "Frédéric THOMAS" wrote: > > What do you think for the conditional compilation, we add a new defined > constant based on "os family" in Ant and use it in the code to use / compile > classes or you see something else ? > > I just created the branch, will commit it. Tom, is

RE: [Intaller] Speed up download

2013-09-29 Thread Frédéric THOMAS
What do you think for the conditional compilation, we add a new defined constant based on "os family" in Ant and use it in the code to use / compile classes or you see something else ? I just created the branch, will commit it. -Fred -Message d'origine- De : Frédéric THOMAS [mailto:webdo

RE: [Intaller] Speed up download

2013-09-29 Thread Frédéric THOMAS
> The good thing is that Installer.mxml is a whole bunch of small methods instead of long methods. It should be easier than you think to make them more organized into classes. I stopped my try of splitting the first step today when I hit the hidden text field but yes, it is easily manageable if t

RE: [Intaller] Speed up download

2013-09-29 Thread OmPrakash Muppirala
On Sep 29, 2013 12:25 PM, "Frédéric THOMAS" wrote: > > It is a very long run though for only one coder, I'm on 2 other projects out > of my work and here, I would hope it can be done on a parallel branch and > not by only one coder. > > But, yes, I think the Installer has become large enough to be

RE: [Intaller] Speed up download

2013-09-29 Thread Frédéric THOMAS
It is a very long run though for only one coder, I'm on 2 other projects out of my work and here, I would hope it can be done on a parallel branch and not by only one coder. But, yes, I think the Installer has become large enough to be rethought. I very well know parsley as MVC framework and even

Re: [Intaller] Speed up download

2013-09-29 Thread OmPrakash Muppirala
On Sun, Sep 29, 2013 at 11:48 AM, Frédéric THOMAS wrote: > Actually I tried to split it today but it is a kind of impossible mission > without a complete architecture review, I mean without introducing the MVC > pattern, but it would mean a ton of work. > > I think we should go ahead and do it. T

RE: [Intaller] Speed up download

2013-09-29 Thread Frédéric THOMAS
Actually I tried to split it today but it is a kind of impossible mission without a complete architecture review, I mean without introducing the MVC pattern, but it would mean a ton of work. So, I've got the parallel downloads working and that's on my github but won't try to integrate it at the mo

RE: [OT] Maven Tip

2013-09-29 Thread Frédéric THOMAS
Sorry for my bad mailer, I hope it is shown better dfx-artifactory dfx-artifactory-releases http://doublefx.redirectme.net:8081/artifactory/ext-release-local -Message d'origine- De : Frédéric THOMAS [mailto:webdoubl...@hotmail.com] Envoyé : dimanche 29 septem

[OT] Maven Tip

2013-09-29 Thread Frédéric THOMAS
Just because I need to get my artifacts from out of my home too, I made my repo public dfx-artifactory dfx-artifactory-releases http://doublefx.redirectme.net:8081/artifactory/ext-relea

RE: Please welcome Maurice Amsellem as our newest committer

2013-09-29 Thread Maurice Amsellem
Thanks aYo -Message d'origine- De : a...@binitie.com [mailto:a...@binitie.com] Envoyé : dimanche 29 septembre 2013 20:18 À : dev@flex.apache.org Objet : Re: Please welcome Maurice Amsellem as our newest committer Congratulations Maurice, welcome aboard aYo mrbinitie.blogspot.com Fr

Re: Please welcome Maurice Amsellem as our newest committer

2013-09-29 Thread ayo
Congratulations Maurice, welcome aboard aYo mrbinitie.blogspot.com From: Frédéric THOMAS Sent: ‎Sunday‎, ‎29‎ ‎September‎ ‎2013 ‎15‎:‎46 To: dev@flex.apache.org Maurice , congrats and welcome on board ! -Message d'origine- De : Erik de Bruin [mailto:e...@ixsoftware.nl] Envoyé : dim

RE: Please welcome Maurice Amsellem as our newest committer

2013-09-29 Thread Maurice Amsellem
Thanks to all for your heartful welcome. I am working on committing the MDG , and hope to complete that very soon. Regards, Maurice -Message d'origine- De : omup...@gmail.com [mailto:omup...@gmail.com] De la part de OmPrakash Muppirala Envoyé : dimanche 29 septembre 2013 19:56 À : dev

Re: Please welcome Maurice Amsellem as our newest committer

2013-09-29 Thread OmPrakash Muppirala
Welcome Maurice! Exciting to you have you on board. Thanks, Om On Sun, Sep 29, 2013 at 10:45 AM, Sugan Naicker wrote: > Hi Maurice > > Congratulations! > > Thanks for the addition to the mobile component set! I have been following > the dev list and appreciate/admire the commitment you have s

Re: Please welcome Maurice Amsellem as our newest committer

2013-09-29 Thread Jose Barragan
Welcome and Congratulations, Maurice! :) -- Jose Barragan Software Architect Codeoscopic +34 912 94 80 80 http://www.codeoscopic.com On Sep 29, 2013, at 7:45 PM, Sugan Naicker wrote: > Hi Maurice > > Congratulations! > > Thanks for the addition to the mobile component set! I have been follow

RE: Please welcome Maurice Amsellem as our newest committer

2013-09-29 Thread Sugan Naicker
Hi Maurice Congratulations! Thanks for the addition to the mobile component set! I have been following the dev list and appreciate/admire the commitment you have shown towards Apache Flex. Regards, Sugan Naicker South Africa -Original Message- From: Erik de Bruin [mailto:e...@ixsoft

RE: Please welcome Maurice Amsellem as our newest committer

2013-09-29 Thread piotr.zarzycki
Hi Maurice! :) Good Luck! :) - Flex/Air Developer -- View this message in context: http://apache-flex-development.247.n4.nabble.com/Please-welcome-Maurice-Amsellem-as-our-newest-committer-tp30185p30192.html Sent from the Apache Flex Development mailing list archive at Nabble.com.

Re: [VOTE][LAZY] Accept donation of Systar DataGrid for Mobile Applications

2013-09-29 Thread Alex Harui
OK, saw the commit email (hoepfully you did too if you subscribed to commits@). So feel free to check in the DG -Alex On 9/29/13 7:32 AM, "Maurice Amsellem" wrote: >Thanks, I will do that. > >Maurice > >-Message d'origine- >De : Alex Harui [mailto:aha...@adobe.com] >Envoyé : dimanche

Re: Please welcome Maurice Amsellem as our newest committer

2013-09-29 Thread Cyrill Zadra
Welcome Maurice! On Sun, Sep 29, 2013 at 4:40 PM, Erik de Bruin wrote: > Hi, > > I am pleased to announce that the Project Management Committee (PMC) > for Apache Flex has invited Maurice Amsellem to become a committer and > he has accepted. > > Maurice has been very active on the mailing lists

RE: Please welcome Maurice Amsellem as our newest committer

2013-09-29 Thread Maurice Amsellem
Thank Fred. -Message d'origine- De : Frédéric THOMAS [mailto:webdoubl...@hotmail.com] Envoyé : dimanche 29 septembre 2013 16:47 À : dev@flex.apache.org Objet : RE: Please welcome Maurice Amsellem as our newest committer Maurice , congrats and welcome on board ! -Message d'origine-

RE: Please welcome Maurice Amsellem as our newest committer

2013-09-29 Thread Maurice Amsellem
Hi, I am really honored and pleased to be part of the team. My current domains of interest in Flex are: - Mobile platform : it's already great and performing very well; still there is a lot more to do ... - Making flex-based frameworks for building specialized Flex apps (Flex + Parsley is a

Re: Shinny new JIRA

2013-09-29 Thread Alex Harui
Maybe like a kick in the shin? ;-) I just went to add Maurice and had to figure out the new way to get to the admin screen, and then found there were two entries for Maurice. I picked the first one. We'll see if it works. -Alex On 9/28/13 10:41 PM, "Justin Mclean" wrote: >Hi, > >It's been up

RE: Please welcome Maurice Amsellem as our newest committer

2013-09-29 Thread Frédéric THOMAS
Maurice , congrats and welcome on board ! -Message d'origine- De : Erik de Bruin [mailto:e...@ixsoftware.nl] Envoyé : dimanche 29 septembre 2013 16:40 À : dev@flex.apache.org Objet : Please welcome Maurice Amsellem as our newest committer Hi, I am pleased to announce that the Project Ma

Please welcome Maurice Amsellem as our newest committer

2013-09-29 Thread Erik de Bruin
Hi, I am pleased to announce that the Project Management Committee (PMC) for Apache Flex has invited Maurice Amsellem to become a committer and he has accepted. Maurice has been very active on the mailing lists and helping out with lots of JIRA issues. On top of that he has recently donated an im

RE: [VOTE][LAZY] Accept donation of Systar DataGrid for Mobile Applications

2013-09-29 Thread Frédéric THOMAS
There is also the still not renamed but useful SVN-TEST.txt where you can try your first commit if you want. -Fred -Message d'origine- De : Alex Harui [mailto:aha...@adobe.com] Envoyé : dimanche 29 septembre 2013 16:28 À : dev@flex.apache.org Objet : Re: [VOTE][LAZY] Accept donation of S

RE: [VOTE][LAZY] Accept donation of Systar DataGrid for Mobile Applications

2013-09-29 Thread Maurice Amsellem
Thanks, I will do that. Maurice -Message d'origine- De : Alex Harui [mailto:aha...@adobe.com] Envoyé : dimanche 29 septembre 2013 16:28 À : dev@flex.apache.org Objet : Re: [VOTE][LAZY] Accept donation of Systar DataGrid for Mobile Applications Hi Maurice, You should have write-acces

Re: [VOTE][LAZY] Accept donation of Systar DataGrid for Mobile Applications

2013-09-29 Thread Alex Harui
Hi Maurice, You should have write-access now. Maybe try a practice commit first like a change to README or NOTICE. Thanks again for the donation. -Alex On 9/27/13 3:24 AM, "Maurice Amsellem" wrote: >Cool. I will try to use them. > >-Message d'origine- >De : Justin Mclean [mailto:jus.