Search code examples
actionscript-3apache-flexflex4flex4.5

Convert ArrayCollection into ArrayLIst in Flex 4.5?


I am using Flex SDK 4.5 and I want to Convert ArrayCollection to ArrayList to populate ComboBox. How Can I do this?


Solution

  • Try this :

    new ArrayList(yourArrayCollectionObject as Array);