Re: Feedback on Apache Flex 4.11.0 RC1

2013-10-14 Thread piotr.zarzycki
JIRA ticket created with example. - Flex/Air developer open to new job offers and challenges. -- View this message in context: http://apache-flex-development.247.n4.nabble.com/Feedback-on-Apache-Flex-4-11-0-RC1-tp30971p31083.html Sent from the Apache Flex Development mailing list archiv

Re: Feedback on Apache Flex 4.11.0 RC1

2013-10-14 Thread piotr.zarzycki
JIRA ticket created with example. -> https://issues.apache.org/jira/browse/FLEX-33824 - Flex/Air developer open to new job offers and challenges. -- View this message in context: http://apache-flex-development.247.n4.nabble.com/Feedback-on-Apache-Flex-4-11-0-RC1-tp30971p31084.html Sent

RE: How to prevent IDEA from opening SWF files

2013-10-14 Thread Maurice Amsellem
Sorry, I didn't use the right word. I mean IDEA becomes frozen during a long time (several minutes), and after prompts a message proposing to increase the memory. So I have no thread dumps to submit. I will file a JIRA. Maurice -Message d'origine- De : Alexander Doroshko [mailto:alexand

Re: How to prevent IDEA from opening SWF files

2013-10-14 Thread Alexander Doroshko
IntelliJ IDEA shouldn't hang. Can you please open an issue for that in http://youtrack.jetbrains.com and attach logs and thread dumps that are automatically saved when IntelliJ IDEA hangs. To find logs and thread dumps use Help | Show Logs. On 15.10.2013 0:28, Maurice Amsellem wrote: Hi, Whe

RE: ASDoc test

2013-10-14 Thread Maurice Amsellem
Fine for me -Message d'origine- De : Justin Mclean [mailto:jus...@classsoftware.com] Envoyé : mardi 15 octobre 2013 03:25 À : dev@flex.apache.org Objet : Re: ASDoc test Hi, > Are we releasing the asdoc\test folder? It's in the release source. I think it probably should be removed for n

Re: Feedback on Apache Flex 4.11.0 RC1

2013-10-14 Thread Alex Harui
If this issue is important to you, I highly recommend filing a JIRA issue with a simple test case so we can prove your problem is solved before we create RC2. If you wait for RC2 and the issue is not resolved, we will make a judgement about how many other folks will be affected and we might decide

Re: Feedback on Apache Flex 4.11.0 RC1

2013-10-14 Thread piotr.zarzycki
I'll wait for RC2, maybe Maurice's fix is the cure for this problem. - Flex/Air developer open to new job offers and challenges. -- View this message in context: http://apache-flex-development.247.n4.nabble.com/Feedback-on-Apache-Flex-4-11-0-RC1-tp30971p31077.html Sent from the Apache

Re: Apache Flex 4.11 release candidate

2013-10-14 Thread piotr.zarzycki
Many Thanks Alex. Problem with textinput becomes less important for me, becouse I've done silly workaroud in our app. But I hope that Maurice's fix for DataGrid will help for problem witch I did mention on "Feedback on Apache Flex 4.11.0 RC1". So I'm waiting for RC2. - Flex/Air developer op

Re: Feedback on Apache Flex 4.11.0 RC1

2013-10-14 Thread Justin Mclean
Hi, > I think that's a different issue. It looked like he was complaining about > a DG issue. It is a different issue. I guess that issue not been raised yet in JIRA. It may be related to the fix/issue the other day re mouse out cursor in DG headers. Justin

Re: Feedback on Apache Flex 4.11.0 RC1

2013-10-14 Thread Alex Harui
On 10/14/13 6:21 PM, "Justin Mclean" wrote: >Hi, > >> It would be great if you filed a JIRA ticket with a small test case so >>we >> can make sure we've taken care of your issue. > >https://issues.apache.org/jira/browse/FLEX-33820 I think that's a different issue. It looked like he was complai

Re: ASDoc test

2013-10-14 Thread Justin Mclean
Hi, > Are we releasing the asdoc\test folder? It's in the release source. I think it probably should be removed for now - any opposing view? Thanks, Justin

Re: Feedback on Apache Flex 4.11.0 RC1

2013-10-14 Thread Justin Mclean
Hi, > It would be great if you filed a JIRA ticket with a small test case so we > can make sure we've taken care of your issue. https://issues.apache.org/jira/browse/FLEX-33820 Justin

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

2013-10-14 Thread Alex Harui
Congratulations. Now get some sleep. ;-) On 10/14/13 5:34 PM, "Maurice Amsellem" wrote: >GOT IT!!! (and without debugging :-) ) > >Actually, in spark DataGrid, the content is not in the DataGrid, but in >the subgridViews, so that's where the updateComplete occurs when the >dataProvider is chang

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

2013-10-14 Thread Alex Harui
OK, thanks for staying with it. In looking at the code, it occurred to me that before the change, resetDP has a bunch of addItem calls which would call the caretChangeHandler often. Maybe that isn't happening in the deferred version and thus the ensureIndexIsVisible isn't being called for the firs

RE: Build failed in Jenkins: flex-sdk_mustella #470

2013-10-14 Thread Maurice Amsellem
GOT IT!!! (and without debugging :-) ) Actually, in spark DataGrid, the content is not in the DataGrid, but in the subgridViews, so that's where the updateComplete occurs when the dataProvider is changed. The UDL that is triggered in the Grid itself, related only to selection/caret changes. R

RE: Build failed in Jenkins: flex-sdk_mustella #470

2013-10-14 Thread Maurice Amsellem
To be more acurate, when the test initially fails, the bitmap shows the list is scrolled to the end, whereas the baseline bitmaps has it scrolled to the top, with the first cell selected. Which means it does not scroll to the top. The fact that updateComplete is not triggered either, would sugg

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

2013-10-14 Thread Alex Harui
Debug into the dataProvider setter. It looks like resetDP assigns the same instance so if there is a change check in the setter then it won't call the invalidation methods. Also check the invalidation flags to see if they are being set or not. I would expect all of those addItem calls to invalid

RE: Build failed in Jenkins: flex-sdk_mustella #470

2013-10-14 Thread Maurice Amsellem
I changed to following: Instead of : DataGrid_comp3.resetDP() is actually re-assigning the dataProvider, so this SHOULD eventually trigger an updateComplete event. Unfortunately, the test fails with : Failed RunCode(body:step 3) Timeout waiting for updateComplete from dataGrid Any idea

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

2013-10-14 Thread Alex Harui
On 10/14/13 5:00 PM, "Maurice Amsellem" wrote: >>Worth trying. But can you set a breakpoint on updateDisplayList to make >>sure it doesn't get called twice? We want to make sure the deferred >>work doesn't force another round >of validation. > >I remember I did that already when manually test

RE: Build failed in Jenkins: flex-sdk_mustella #470

2013-10-14 Thread Maurice Amsellem
>Worth trying. But can you set a breakpoint on updateDisplayList to make sure >it doesn't get called twice? We want to make sure the deferred work doesn't >force another round >of validation. I remember I did that already when manually testing the fix: I did several changes to the dataProvide

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

2013-10-14 Thread Alex Harui
Worth trying. But can you set a breakpoint on updateDisplayList to make sure it doesn't get called twice? We want to make sure the deferred work doesn't force another round of validation. -Alex On 10/14/13 4:50 PM, "Maurice Amsellem" wrote: >>Sounds like a timing issue with the tests. eg They

RE: Build failed in Jenkins: flex-sdk_mustella #470

2013-10-14 Thread Maurice Amsellem
>Sounds like a timing issue with the tests. eg They need to wait for >undateComplete event? In the test case below (which was one of the failing), after the DP has been reset, it's waiting for the next frame: And after that, it's waiting for two more frames before comparing the bitmaps... S

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

2013-10-14 Thread Alex Harui
On 10/14/13 4:33 PM, "Justin Mclean" wrote: >HI, > >Sounds like a timing issue with the tests. eg They need to wait for >undateComplete event? Maybe or that change could be accidentally causing a second layout pass which would be bad. I can live with the validateNow() in the original fix, but

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

2013-10-14 Thread Alex Harui
On 10/14/13 4:06 PM, "Maurice Amsellem" wrote: >--- >Intuitively, I would say that both fixes are OK, but the latter one has >side effects because of the deferred behavior. > >So should I commit the initial fix, although it's not optimal? I guess it depends on how much time you have. Obvio

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

2013-10-14 Thread Justin Mclean
HI, Sounds like a timing issue with the tests. eg They need to wait for undateComplete event? Justin

RE: Debugging Mustella tests in Flash Builder

2013-10-14 Thread Maurice Amsellem
That's fantastic!! Thanks a lot for the explanations. I think this should end "as is" in the WIKI. Maurice -Message d'origine- De : omup...@gmail.com [mailto:omup...@gmail.com] De la part de OmPrakash Muppirala Envoyé : mardi 15 octobre 2013 01:01 À : dev@flex.apache.org Objet : Debugg

RE: Build failed in Jenkins: flex-sdk_mustella #470

2013-10-14 Thread Maurice Amsellem
I have tried again the initial fix for FLEX-33813 (DataGrid goes blank when scrolled and dataProvider is changed ) that consisted in adding a missing "validateNow()" before setting verticalPosition=0 (line 5449) It's not optimal, because of the validateNow(), BUT Mustella tests are passing.

Debugging Mustella tests in Flash Builder

2013-10-14 Thread OmPrakash Muppirala
On Mon, Oct 14, 2013 at 3:02 PM, Maurice Amsellem < maurice.amsel...@systar.com> wrote: > > You can try the opening-fb-debugger and then running the debug swf > trick. Let me know if you need more details on how to do this. > > Yes please. > I just tried these steps and they work: 1. Create a

Re: [VOTE][RESULT] Apache Flex 4.11.0 release candidate 1

2013-10-14 Thread Mark Kessler
Sorry I should label that lol. -Mark On Mon, Oct 14, 2013 at 6:55 PM, Justin Mclean wrote: > Hi, > > > +1 (non binding) > > Mark Kessler > > Correction Mark's vote was binding as he is a PMC member. > > Thankd, > Justin >

Re: [VOTE][RESULT] Apache Flex 4.11.0 release candidate 1

2013-10-14 Thread Justin Mclean
Hi, > +1 (non binding) > Mark Kessler Correction Mark's vote was binding as he is a PMC member. Thankd, Justin

[VOTE][RESULT] Apache Flex 4.11.0 release candidate 1

2013-10-14 Thread Justin Mclean
Hi, Votes results are: +1 (binding) Justin Mclean Alex Harui Nicholas Kwiatkowski +1 (non binding) Mark Kessler -0 (binding) Erik de Bruin Also there was also a -1 (non binding) but not in the vote thread from a user of the SDK. While the votes passes, as release manger I think another RC is

Re: [VOTE] Apache Flex 4.11.0 release candidate 1

2013-10-14 Thread Justin Mclean
Hi, +1 (binding) from me. Tested on OSX. -MD5 and sigs check out (the new check_sigs.sh in build can help out here) - Can compile source code (OSX/Java 1.7) - README, RELEASE_NOTES and NOTICE all in good shape. - Rat report says no bad licences. - Turned into usable SDK via build scripts (not ins

Re: Changes I want to make before RC2

2013-10-14 Thread Alex Harui
On 10/14/13 3:32 PM, "Justin Mclean" wrote: >Hi, > >> Actually, we have enough votes to release RC1. It is sort of up to >>Justin >> to decide if he wants to do another one or save all of these fixes for >> 4.12. >I think we need a RC2. OK, I'm going to go look at that focus thing again tonigh

[FlexJS] New Wiki Writeup

2013-10-14 Thread Alex Harui
Hi, I found some time to update the wiki information on FlexJS. It is here [1] and points to a FAQ page [2] as well. Feedback welcome. Thanks, -Alex [1] https://cwiki.apache.org/confluence/display/FLEX/FlexJS [2] https://cwiki.apache.org/confluence/display/FLEX/FlexJS+FAQ

Re: Changes to develop and release

2013-10-14 Thread OmPrakash Muppirala
> Frankly surprised that the README/RELEASE_NOTE don't need more changes > given my usual bad english. > > I dont know what you are talking about ;-)

Re: Changes I want to make before RC2

2013-10-14 Thread Justin Mclean
Hi, > Actually, we have enough votes to release RC1. It is sort of up to Justin > to decide if he wants to do another one or save all of these fixes for > 4.12. I think we need a RC2. There's a few changes to the README and install scripts that are useful, there a few issues to investigate and i

Re: Feedback on Apache Flex 4.11.0 RC1

2013-10-14 Thread Alex Harui
It would be great if you filed a JIRA ticket with a small test case so we can make sure we've taken care of your issue. -Alex On 10/14/13 3:21 PM, "piotr.zarzycki" wrote: >I've already checked it Maurice. I'll wait for the next RC with this fix. >Thank you. :) > > > > >- >Flex/Air develope

Re: Changes to develop and release

2013-10-14 Thread Justin Mclean
Hi, > Do you want me to merge that change to the release folder I'll sort it out thanks. > Sorry No need to be sorry for a good fix and it more that checkins combined with the reverts that just happened. Frankly surprised that the README/RELEASE_NOTE don't need more changes given my usual bad

Re: Changes I want to make before RC2

2013-10-14 Thread Alex Harui
Actually, we have enough votes to release RC1. It is sort of up to Justin to decide if he wants to do another one or save all of these fixes for 4.12. If we do an RC2, I'd want to revisit the focus fix and also chase down some of these recent complaints about DG, cut-and-paste-text, and other thi

RE: Feedback on Apache Flex 4.11.0 RC1

2013-10-14 Thread piotr.zarzycki
I've already checked it Maurice. I'll wait for the next RC with this fix. Thank you. :) - Flex/Air developer open to new job offers and challenges. -- View this message in context: http://apache-flex-development.247.n4.nabble.com/Feedback-on-Apache-Flex-4-11-0-RC1-tp30971p31031.html S

RE: Feedback on Apache Flex 4.11.0 RC1

2013-10-14 Thread piotr.zarzycki
I've already checked it Maurice. I'll wait for the next RC with this fix. - Flex/Air developer open to new job offers and challenges. -- View this message in context: http://apache-flex-development.247.n4.nabble.com/Feedback-on-Apache-Flex-4-11-0-RC1-tp30971p31030.html Sent from the A

Re: Changes to develop and release

2013-10-14 Thread Nicholas Kwiatkowski
I think I was one of the people (maybe the only one) that made changes to the README. Do you want me to merge that change to the release folder, or do you think that will mess things up even more? Sorry -- forgot what the policy was for making changes in the middle of a release ;) -Nick On Mon

Re: git commit: [flex-sdk] [refs/heads/develop] - UNDO FIX https://issues.apache.org/jira/browse/FLEX-33813 (DataGrid goes blank when scrolled and dataProvider is changed ) UNDO Fix https://issues.apa

2013-10-14 Thread Alex Harui
On 10/14/13 2:16 PM, "Justin Mclean" wrote: >Hi, > >And if so assuming the patches are correct isn't it better to fix the >tests? IMO, that's not a safe assumption to make. And while investigating whether the patches are correct it is best to revert so it doesn't block building another RC. Ju

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

2013-10-14 Thread Justin Mclean
Hi, > Do I commit/push to develop as usual, and let Justin merge with release , or > commit directly to release ? It's a bit of a mess - but as you reverted in develop I'd un revert/recommit the changes in develop. Thanks, Justin

Changes I want to make before RC2

2013-10-14 Thread OmPrakash Muppirala
Just putting it out there so that I get some more time: 1. Fixes for 640 dpi and 480 dpi skins (will finish this tonight) 2. Updates to Installer and config.xml to point to OSMF 2.0. I plan to cut an RC for Installer 2.7.0 for this. (tomorrow night) If someone wants to take (2) off of my plat

Re: Changes to develop and release

2013-10-14 Thread Justin Mclean
Hi, > So, the fixes to the 640 dpi skins should go into the release4.11.0 branch > - is that correct? Check into release, then merge with develop is probably best strategy. Thanks, Justin

RE: Feedback on Apache Flex 4.11.0 RC1

2013-10-14 Thread Maurice Amsellem
If you selected 4.11.0 (dev only) I think so. To be sure, check the spark Grid class (frameworks\projects\spark\src\spark\components\Grid.as ) includes the following variable: private var updateCaretForDataProviderChangeLastEvent:CollectionEvent; Maurice -Message d'origine- De :

Re: Feedback on Apache Flex 4.11.0 RC1

2013-10-14 Thread Justin Mclean
HI, > I've switched today our Adobe Air app from AF 4.10 to AF 4.11 RC1 and I've > got problem with DataGrid header. Thanks for testing and finding the issue, we'll look into it. Justin

Re: Feedback on Apache Flex 4.11.0 RC1

2013-10-14 Thread Justin Mclean
Hi, > I downloaded 4.11 version by Apache Flex Installer. Does version available > through installer contains this fix? No, but the next RC is likely to. Thanks, Justin

RE: Feedback on Apache Flex 4.11.0 RC1

2013-10-14 Thread piotr.zarzycki
I've just checked and this version of SDK witch I've got doesn't have this fix. :/ - Flex/Air developer open to new job offers and challenges. -- View this message in context: http://apache-flex-development.247.n4.nabble.com/Feedback-on-Apache-Flex-4-11-0-RC1-tp30971p31021.html Sent fro

RE: Build failed in Jenkins: flex-sdk_mustella #470

2013-10-14 Thread Maurice Amsellem
Hi, I have tested with the fix below only, and the failing tests are passing. https://issues.apache.org/jira/browse/FLEX-33818 (Spark Datagrid column resize and sort bug when releasing mouse outside of headers) So I would like to commit again this fix (but not the other one) Do I commit/push t

Re: Changes to develop and release

2013-10-14 Thread OmPrakash Muppirala
On Mon, Oct 14, 2013 at 3:00 PM, Justin Mclean wrote: > Hi, > > I noticed some improvements to the README in develop (thanks!) and now we > have some reverts also in develop, which means in order to make the next RC > I would need to cherry pick, that's painful, error prone and then we don't > kno

RE: Feedback on Apache Flex 4.11.0 RC1

2013-10-14 Thread piotr.zarzycki
Hi Maurice. I downloaded 4.11 version by Apache Flex Installer. Does version available through installer contains this fix? - Flex/Air developer open to new job offers and challenges. -- View this message in context: http://apache-flex-development.247.n4.nabble.com/Feedback-on-Apache-F

Re: Apache Flex Success Story

2013-10-14 Thread Jim Robson
Om, No, unfortunately, there is no mobile component. Our end users all have multiple wide-screen monitors. Their work involves predictive analytics, and they want fairly large data sets with multiple simultaneous visualizations. They have very limited use cases for mobile interfaces, so we haven't

RE: git commit: [flex-sdk] [refs/heads/develop] - UNDO FIX https://issues.apache.org/jira/browse/FLEX-33813 (DataGrid goes blank when scrolled and dataProvider is changed ) UNDO Fix https://issues.apa

2013-10-14 Thread Maurice Amsellem
> You can try the opening-fb-debugger and then running the debug swf trick. > Let me know if you need more details on how to do this. Yes please. Also, how is it possible to run only one test case ? Eg. DataGrid_requireSelection_test001 > requireSelection_test15 instead of the full DataGrid/P

Changes to develop and release

2013-10-14 Thread Justin Mclean
Hi, I noticed some improvements to the README in develop (thanks!) and now we have some reverts also in develop, which means in order to make the next RC I would need to cherry pick, that's painful, error prone and then we don't know if Jenkins is actually testing the RC. In future it would be

Re: [FlexJS] how much of Google closure goodies do we plan to use?

2013-10-14 Thread Alex Harui
Good question. In general, unless we suspect that there is a way to do it with better performance or smaller footprint, we'd probably use a Google Closure library implementation. The most important thing though, is to make sure that the inclusion in FlexJS is pay-as-you-go so you only pick up the

Re: git commit: [flex-sdk] [refs/heads/develop] - UNDO FIX https://issues.apache.org/jira/browse/FLEX-33813 (DataGrid goes blank when scrolled and dataProvider is changed ) UNDO Fix https://issues.apa

2013-10-14 Thread OmPrakash Muppirala
On Mon, Oct 14, 2013 at 2:42 PM, Maurice Amsellem < maurice.amsel...@systar.com> wrote: > The WIKI says Mustella can be debugged using fdb. > Is there a way to debug inside a given test using an IDE debugger (such as > IDEA or FB), like in FlexUnit ? > > Maybe using OneClickMustella? > > Not using

Re: Feedback on Apache Flex 4.11.0 RC1

2013-10-14 Thread piotr.zarzycki
Sorry I forgot to mention this problem is also on AF 4.10. - Flex/Air developer open to new job offers and challenges. -- View this message in context: http://apache-flex-development.247.n4.nabble.com/Feedback-on-Apache-Flex-4-11-0-RC1-tp30971p31003.html Sent from the Apache Flex Devel

RE: git commit: [flex-sdk] [refs/heads/develop] - UNDO FIX https://issues.apache.org/jira/browse/FLEX-33813 (DataGrid goes blank when scrolled and dataProvider is changed ) UNDO Fix https://issues.apa

2013-10-14 Thread Maurice Amsellem
The WIKI says Mustella can be debugged using fdb. Is there a way to debug inside a given test using an IDE debugger (such as IDEA or FB), like in FlexUnit ? Maybe using OneClickMustella? Maurice -Message d'origine- De : Maurice Amsellem [mailto:maurice.amsel...@systar.com] Envoyé : l

RE: git commit: [flex-sdk] [refs/heads/develop] - UNDO FIX https://issues.apache.org/jira/browse/FLEX-33813 (DataGrid goes blank when scrolled and dataProvider is changed ) UNDO Fix https://issues.apa

2013-10-14 Thread Maurice Amsellem
Thanks, I will read it. -Message d'origine- De : omup...@gmail.com [mailto:omup...@gmail.com] De la part de OmPrakash Muppirala Envoyé : lundi 14 octobre 2013 23:35 À : dev@flex.apache.org Objet : Re: git commit: [flex-sdk] [refs/heads/develop] - UNDO FIX https://issues.apache.org/jira/b

RE: Feedback on Apache Flex 4.11.0 RC1

2013-10-14 Thread Maurice Amsellem
Hi piotr, Did the RC1 you tested include the following "fixes" ? Updated Branches: refs/heads/release4.11.0 fb3fe2ea1 -> ed4190e25 FIX https://issues.apache.org/jira/browse/FLEX-33813 (DataGrid goes blank when scrolled and dataProvider is changed ) FIX minor ASDOC wording in CalloutSkin fo

Re: git commit: [flex-sdk] [refs/heads/develop] - UNDO FIX https://issues.apache.org/jira/browse/FLEX-33813 (DataGrid goes blank when scrolled and dataProvider is changed ) UNDO Fix https://issues.apa

2013-10-14 Thread OmPrakash Muppirala
On Mon, Oct 14, 2013 at 2:31 PM, Maurice Amsellem < maurice.amsel...@systar.com> wrote: > Hi, I have undone the fixes, and the tests are passing, so obviously, the > fix have broken the tests. > > On the other hand, the manual tests I have made tells me that the fixes > have actually fixed the bu

RE: git commit: [flex-sdk] [refs/heads/develop] - UNDO FIX https://issues.apache.org/jira/browse/FLEX-33813 (DataGrid goes blank when scrolled and dataProvider is changed ) UNDO Fix https://issues.apa

2013-10-14 Thread Maurice Amsellem
Hi, I have undone the fixes, and the tests are passing, so obviously, the fix have broken the tests. On the other hand, the manual tests I have made tells me that the fixes have actually fixed the bugs they intended to. So maybe the tests were somehow "compensating" for the existing bugs. T

Re: Feedback on Apache Flex 4.11.0 RC1

2013-10-14 Thread piotr.zarzycki
Hi, I've switched today our Adobe Air app from AF 4.10 to AF 4.11 RC1 and I've got problem with DataGrid header. I've prepared some example to present this situation. Short descritpion: 1) I've got view with data grid, on ADDED_TO_STAGE event for this view I'm filling dataProvider 2) On REMOVED_

Re: Apache Flex 4.11.0 RC 1 - 640 dpi issue

2013-10-14 Thread OmPrakash Muppirala
On Mon, Oct 14, 2013 at 2:12 PM, Justin Mclean wrote: > HI, > > If you run at 120,160, 240, 320 all of the controls are about the same > size - there's minor variations in padding and borders but basically the > same.if you set the applicationDPi to 480 or 640 you notice that the > controls are sm

Re: git commit: [flex-sdk] [refs/heads/develop] - UNDO FIX https://issues.apache.org/jira/browse/FLEX-33813 (DataGrid goes blank when scrolled and dataProvider is changed ) UNDO Fix https://issues.apa

2013-10-14 Thread Justin Mclean
Hi, Are we sure these caused the test failures? And if so assuming the patches are correct isn't it better to fix the tests? Justin

Re: Apache Flex 4.11.0 RC 1 - 640 dpi issue

2013-10-14 Thread Justin Mclean
HI, If you run at 120,160, 240, 320 all of the controls are about the same size - there's minor variations in padding and borders but basically the same.if you set the applicationDPi to 480 or 640 you notice that the controls are smaller, there's no gap between the radio buttons but is with the

RE: How to prevent IDEA from opening SWF files

2013-10-14 Thread Maurice Amsellem
Found out: you can add *.swf to the Ignore Files and Folders in Settings>File Types. -Message d'origine- De : Maurice Amsellem [mailto:maurice.amsel...@systar.com] Envoyé : lundi 14 octobre 2013 22:29 À : dev@flex.apache.org Objet : How to prevent IDEA from opening SWF files Hi, When

How to prevent IDEA from opening SWF files

2013-10-14 Thread Maurice Amsellem
Hi, When I open the SWF folders in mustella tests in IDEA, to check the log and mxml files, IDEA hangs because it tries to open the swf files that are inside these directories. Is there a way to prevent IDEA from trying to open the swfs? Maurice Maurice Amsellem SYSTAR R&D - BusinessBridgeFX

[FlexJS] how much of Google closure goodies do we plan to use?

2013-10-14 Thread Sharma, Pratyoosh
I was thinking on dragging implementation for popups & seems that libraries like closure abstracts a lot of it. Understanding that using these functions will start bringing in a lot of closure classes into the download of FlexJS framework, it seems like a lot of reinventing the wheel work to imp

RE: Build failed in Jenkins: flex-sdk_mustella #470

2013-10-14 Thread Maurice Amsellem
OK. -Message d'origine- De : Erik de Bruin [mailto:e...@ixsoftware.nl] Envoyé : lundi 14 octobre 2013 20:14 À : dev@flex.apache.org Cc : Maurice Amsellem; aha...@apache.org Objet : Re: Build failed in Jenkins: flex-sdk_mustella #470 Yeah, one or more of those commits broke stuff... Ple

Apache Flex 4.11.0 RC 1 - 640 dpi issue

2013-10-14 Thread OmPrakash Muppirala
On Sun, Oct 13, 2013 at 5:09 PM, Justin Mclean wrote: > Hi, > > Looks there there's a couple of issues that need to be sorted - try this > out: > > > http://ns.adobe.com/mxml/2009"; >xmlns:s="library://ns.adobe.com/flex/spark" >applicationDP

RE: [FlexJS] FLEX-33778 Combobox & DropdownList ListBase.js throws a NPE

2013-10-14 Thread Sharma, Pratyoosh
Thanks a lot Alex, the fix worked perfectly I will make the same changes on ComboBox class as well Just one thing that I had to make on the top of your commit, you used the ArraySelectionModel but didn't added a goog.require('org.apache.flex.html.staticControls.beads.models.ArraySelectionModel')

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

2013-10-14 Thread OmPrakash Muppirala
Could be an issue with 11.9 release player as well. Just saying. Thanks, Om On Mon, Oct 14, 2013 at 11:14 AM, Erik de Bruin wrote: > Yeah, one or more of those commits broke stuff... > > Please revert soonest, then fix, test locally and re-commit at your > leisure ;-) > > Thanks, > > EdB > >

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

2013-10-14 Thread Erik de Bruin
Yeah, one or more of those commits broke stuff... Please revert soonest, then fix, test locally and re-commit at your leisure ;-) Thanks, EdB On Mon, Oct 14, 2013 at 8:03 PM, wrote: > See > > Changes: > > [maurice.amsellem] FIX https

Re: ASDoc test

2013-10-14 Thread Mark Kessler
Alex, Are we allowed to copy the text from [1] the ASDoc pages of Adobe? [1] http://help.adobe.com/en_US/flex/using/WSd0ded3821e0d52fe1e63e3d11c2f44bb7b-7fe7.html -Mark On Mon, Oct 14, 2013 at 1:35 PM, Mark Kessler wrote: > I'm not apposed to it if other people could use it. But it sounds

Re: [VOTE] Apache Flex 4.11.0 release candidate 1

2013-10-14 Thread Mark Kessler
+1 Win7 64bit, Global 11.8, Air 3.8, * Successfully build SDK. * Passed checkintests * hashes matched * Successfully compiled test applications using both the src sdk and the ready made binaries. -No rat check (not setup anttask.classpath) -No full mustella test. -Mark

Re: ASDoc test

2013-10-14 Thread Mark Kessler
I'm not apposed to it if other people could use it. But it sounds like it's going to change a lot. No worries I guess. BTW do we have any assembled ASDoc information? I mean besides a blurb in our README... To build the ASDoc package ant asdoc-package We put together more infor

Re: Apache Flex Success Story

2013-10-14 Thread OmPrakash Muppirala
On Mon, Oct 14, 2013 at 4:36 AM, Patel Amit wrote: > could you just let us know ,how were your journey went through to move from > 4.5 to 4.10 > > Just want to know what are the necessary things are required to change? > > Thanks and Congratulation. > > > On Mon, Oct 14, 2013 at 3:59 PM, Jim Robso

RE: ASDoc test

2013-10-14 Thread Maurice Amsellem
The purpose of asdoc/test was for me to provide a simple structure and build file to test changes in ASDOC compiler or templates, without having to run through the whole SDK ASDOC generation. I wrote them while I was working on the "experimental" metadata changes. I thought these could be useful

ASDoc test

2013-10-14 Thread Mark Kessler
Are we releasing the asdoc\test folder? -Mark

Re: [VOTE] Apache Flex 4.11.0 release candidate 1

2013-10-14 Thread Nicholas Kwiatkowski
+1 (binding) Windows 7/x64 - MD5 / ASC hashes match for both source and binaries. - README and RELEASE_NOTES look sane and correct. --- constructFlexForIDE.bat AND makeApacheFlexForIDE.bat gives errors when source was not built. We should check for this in future builds, or just compile the sou

RE: FLEX-33806 and spark Alert implementation

2013-10-14 Thread Maurice Amsellem
Thanks Alex for your detailed answers. I will think about it -Message d'origine- De : Alex Harui [mailto:aha...@adobe.com] Envoyé : lundi 14 octobre 2013 16:52 À : dev@flex.apache.org Objet : Re: FLEX-33806 and spark Alert implementation On 10/13/13 5:58 PM, "Maurice Amsellem" wrote:

Re: [jira] [Commented] (FLEX-33774) grid.anchorRowIndex is reset to 0 when selection is programatically set (breaking further selection extend operations, e.g. SHIFT+CLICK)

2013-10-14 Thread Alex Harui
Sounds like some other class named grid is in the source path. What is the name of the test case mxml file? Sent via the PANTECH Discover, an AT&T 4G LTE smartphone. "Cosma Colanicchia (JIRA)" wrote: [ https://issues.apache.org/jira/browse/FLEX-33774?page=com.atlassian.jira.plugin.sys

Re: [FlexJS] IFlexInfo

2013-10-14 Thread Peter Ent
I can confirm that the new FlexJSOverlay.zip does run the jQuerySample and DataBindingTest. --peter On 10/11/13 6:30 PM, "Alex Harui" wrote: >I uploaded a new FlexJSOverlay.zip. It builds and runs the >DataBindingTest and JQuerySample. > >I discovered that if you don't specify the compiler argu

Re: Apache Flex 4.11 release candidate

2013-10-14 Thread Alex Harui
I did spend some time on it, but the RC was already being made. I'll look again after I get some other stuff done, but the fix may not be in 4.11. But fear not, there will most likely be a 4.12 and/or a workaround. On 10/14/13 12:49 AM, "piotr.zarzycki" wrote: >Hi :) > >It would be awesome if s

Re: FLEX-33806 and spark Alert implementation

2013-10-14 Thread Alex Harui
On 10/13/13 5:58 PM, "Maurice Amsellem" wrote: >>That might be a flaw in the design. I think other Spark components have >>a content property that can take a textFlow. >>Then it is left to the skin designer to grab the right property from the >>model and display it in the view/skin. > >Shouldn

Re: [DISCUSSION] Apache Flex 4.11.0 RC 1

2013-10-14 Thread Mark Kessler
ok, give me a bit to run through it. -Mark On Mon, Oct 14, 2013 at 10:35 AM, Alex Harui wrote: > IMO, no. In fact you are encouraged to test with RC1 to see if there are > any other things broken that need to be addressed in an RC2. > > On 10/14/13 7:20 AM, "Mark Kessler" wrote: > > >So does

Re: [DISCUSSION] Apache Flex 4.11.0 RC 1

2013-10-14 Thread Alex Harui
On 10/14/13 2:06 AM, "Erik de Bruin" wrote: >> I think (even though it's a little painful) we have go with the tests >>passing as tagged (even though they are not part of the source release) >>otherwise a new RC is needed. Otherwise there's no way of reproducing >>the test results accurately. I

Re: [DISCUSSION] Apache Flex 4.11.0 RC 1

2013-10-14 Thread Alex Harui
IMO, no. In fact you are encouraged to test with RC1 to see if there are any other things broken that need to be addressed in an RC2. On 10/14/13 7:20 AM, "Mark Kessler" wrote: >So does this mean I should wait for rc2 before testing? since I'm a little >late here atm. > >-Mark

Re: [DISCUSSION] Apache Flex 4.11.0 RC 1

2013-10-14 Thread Mark Kessler
So does this mean I should wait for rc2 before testing? since I'm a little late here atm. -Mark

Re: Mustella tests failing and release candidates

2013-10-14 Thread Mark Kessler
In the US it's a holiday weekend too... good time for a little traveling. -Mark On Sun, Oct 13, 2013 at 9:21 AM, Nicholas Kwiatkowski wrote: > I personally have a lot less time on the weekends as well. It would help me > out by extending it so the vote does not primarily occur during a weekend.

Re: Unsubsribe

2013-10-14 Thread Mark Kessler
You can subscribe/unsubscribe to the list [1] by sending a sending an email to mailto:dev-unsubscr...@flex.apache.org [1] http://flex.apache.org/community-mailinglists.html -Mark On Sat, Oct 12, 2013 at 5:28 PM, Curtis Fisher wrote: > > > -Original Message- > From: Justin Mclean [mai

Re: Apache Flex Success Story

2013-10-14 Thread Patel Amit
could you just let us know ,how were your journey went through to move from 4.5 to 4.10 Just want to know what are the necessary things are required to change? Thanks and Congratulation. On Mon, Oct 14, 2013 at 3:59 PM, Jim Robson wrote: > Just a quick note to thank all of you for your outsta

RE: FLEX-33806 and spark Alert implementation

2013-10-14 Thread Maurice Amsellem
>Exactly my thoughts ;) >I hope I can find some time in the near future to dive back in. Cool :-) I will be happy to assist you in any way, if you want to. Or we could also do it as a team, sharing our thoughts on the dev list. On my side, I think I will be able to spend enough time on it proba

RE: FLEX-33806 and spark Alert implementation

2013-10-14 Thread Maurice Amsellem
:-) -Message d'origine- De : Justin Mclean [mailto:jus...@classsoftware.com] Envoyé : lundi 14 octobre 2013 12:31 À : dev@flex.apache.org Objet : Re: FLEX-33806 and spark Alert implementation Hi, > IMO, the buttons configuration Yes/No , Ok/Cancel, is part of the standard > Alert behav

Re: FLEX-33806 and spark Alert implementation

2013-10-14 Thread Maxime Cowez
> I think both sentences lead to the same conclusion: making a new "Popup" as easy as possible to implement (using your "PopupController"). > That way, it's not even needed to derive from anything. > If you need a custom alert with let's say "Retry/Ignore/Abort" buttons, build a custom Panel and

Re: FLEX-33806 and spark Alert implementation

2013-10-14 Thread Justin Mclean
Hi, > IMO, the buttons configuration Yes/No , Ok/Cancel, is part of the standard > Alert behavior (see Windows or Java API, for example). > For the same reason, the icons should also be standardized ( INFO, WARNING, > ERROR). Let take a leaf from Android with debug , info, warning, error and

Apache Flex Success Story

2013-10-14 Thread Jim Robson
Just a quick note to thank all of you for your outstanding work. My team just upgraded a major internal app from Adobe Flex 3.5.1 to Apache Flex 4.10.0 and it went perfectly. Nice work! Full write-up here: http://www.robsondesign.com/blog/index.php/2013/10/13/thumbs-up-for-apache-flex/

  1   2   >