I have a code that uses ArrayCollection, it imports:
import mx.collections.ArrayCollection;
then
static protected var myAC:ArrayCollection = new ArrayCollection();
It looks like, but in my project the import (and therefore ArrayCollection) was not found / defined!
I am using Flash Builder 4 (Flex 4) - this is an ActionScript project, and for the project properties - Flex SDK 4.0. All settings must be set by default.
When I type "import mx." and press the space bar (autofill), I see a list of options, such as core, geom and several others, but not "collections".
Am I missing something?
source share