From what I read on the AS3 documents the Object class should be used to create an associative array.
Now this might just be my C++ knowledge getting in the way of how flash works but how do I remove keys? Another question is how do I iterate an associative array? There are no iterators in flash, so I’m guessing it’s not possible.
My best idea is to just keep doing what I have now. I use an array that allows me to iterate and keep the associative array for look-up via an ID.
Is this what you guys do in this situation?