I am trying to create a collection class in Flex, which is limited to distributing the specific type of data that I use (interface). I decided not to extend the ArrayCollection class, since it is too general, and actually does not give me the compilation time that I need. In a simplified form, my collection contains an array, and I control how objects are added and removed, etc.
What I really want is to use these collections for each loop. It definitely doesn't look as straight forward as C # says, where you just implement IEnumerable and IEnumerator (or just use the Generic collection). Is there a way to do this in a script action, and if so, what information is on how this is achieved?
Greetings
source share