I have a menu, each time you click on an item it opens up a screen (a new flex component), when I click back on to the screen I want to dispose of that particular instance, is there an easy way to do this?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
UIComponent.removeChild(child) is one way. You can also do this with View States. |
|||||||
|
|
The best way to do it is to store all your dynamic instances in an Array, like dynamicHandles:
And then add as children:
Finally, whenever you need to remove them, first remove them as child and then clean up the array like so:
|
|||
|