Re: UIComponent not removing its event listeners?

2016-02-22 Thread XaviConde
Hi Alex, I'm analyzing a simple case, where an About popup dialog is closed but several of the objects used are still in memory. In this case, the About class inherits from TitleWindow, which inherits from UIComponent. I take memory snapshots before opening the popup and after closing it. I can

Re: [FlexJS][FalconJX] Proxy Support

2016-02-22 Thread piotrz
Hi Alex, Constructor Proxy class for JS compilation has strange description. Probably mistake. Piotr - Apache Flex PMC piotrzarzyck...@gmail.com -- View this message in context: http://apache-flex-development.247.n4.nabble.com/FlexJS-FalconJX-Proxy-Support-tp51658p51662.html Sent from

Re: [FlexJS] Tree Component

2016-02-22 Thread jude
+1 great work On Fri, Feb 19, 2016 at 10:31 AM, Peter Ent wrote: > Hi, > > I've just finished adding a new component to the FlexJS HTML package: > Tree. The Tree component is completely based on List and uses a new data > model, HierarchicalData, found in the FlexJS Collections package. > > You

Re: [7/7] git commit: [flex-sdk] [refs/heads/develop] - FLEX-35031 FLEX-33058 -Simplified algorithm in findAny() and findLast(). -Improved asdoc for these functions. Note that all tests still pass.

2016-02-22 Thread Mihai Chira
Great, thank you Josh! I just made the changes. On 17 February 2016 at 20:05, Josh Tynjala wrote: > "You can add content to the comment before the @inheritDoc tag." > > Source: > http://help.adobe.com/en_US/flex/using/WSd0ded3821e0d52fe1e63e3d11c2f44bc36-7ff6.html > > I previously ran into this i

Re: [2/7] git commit: [flex-sdk] [refs/heads/develop] - FLEX-35031 -Since I'm planning to use ObjectUtil.isDynamicObject() in the fix, I wanted to unit test it. -Also, I introduced a new function in O

2016-02-22 Thread Mihai Chira
For XML and ObjectProxy - true, and for Proxy - false, according to the new unit tests I just committed. Does that look all right? I've never used the Proxy class, and although in the docs it looks like it's not marked as dynamic (as opposed to ObjectProxy, which is), it does provide some pretty dy

Re: [2/7] git commit: [flex-sdk] [refs/heads/develop] - FLEX-35031 -Since I'm planning to use ObjectUtil.isDynamicObject() in the fix, I wanted to unit test it. -Also, I introduced a new function in O

2016-02-22 Thread Alex Harui
On 2/22/16, 3:26 AM, "Mihai Chira" wrote: >For XML and ObjectProxy - true, and for Proxy - false, according to >the new unit tests I just committed. Does that look all right? I've >never used the Proxy class, and although in the docs it looks like >it's not marked as dynamic (as opposed to Obje

Re: UIComponent not removing its event listeners?

2016-02-22 Thread Alex Harui
On 2/22/16, 12:24 AM, "XaviConde" wrote: >Hi Alex, > >I'm analyzing a simple case, where an About popup dialog is closed but >several of the objects used are still in memory. > >In this case, the About class inherits from TitleWindow, which inherits >from >UIComponent. I take memory snapshots

Re: [2/7] git commit: [flex-sdk] [refs/heads/develop] - FLEX-35031 -Since I'm planning to use ObjectUtil.isDynamicObject() in the fix, I wanted to unit test it. -Also, I introduced a new function in O

2016-02-22 Thread Mihai Chira
> class and any subclass of it must be marked Dynamic so I think you are ok > here. Phew :) Thanks, Mihai

Re: UIComponent not removing its event listeners?

2016-02-22 Thread XaviConde
Thanks Alex. I'm working on a sample project to expose the problems we're having. I'll create a new thread about it tomorrow. Regards! -- View this message in context: http://apache-flex-development.247.n4.nabble.com/UIComponent-not-removing-its-event-listeners-tp51608p51669.html Sent from

[FlexJS] Storage

2016-02-22 Thread Peter Ent
I've added a new project to FlexJS: Storage. This one is aimed at providing short- and long-term storage for FlexJS apps. In this commit is an implementation of LocalStorage for Flash and browser platforms. Its pretty simple, but I hope will be useful to you for simple storage between sessions.