Hi, I have multiple places in my app where I am opening a window which is an extension of the tab group, if you will. I just realised with one window which has a scrollable view, that when I close the window and re-open it after, all components of the page are being added again. When I close the window, I am using self.close() and self=null. And my windows variable name is self. I tholught by nulling out the window, I would be releasing all of the components in the window? For now, I just added in self.removeAllChildren() in o=order to resolve the issue of multiple labels when I scroll, BUT, is the window being released from memory properly?
↧