Sarfraz Ahmed
Sarfraz Ahmed

Reputation: 1399

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?

Upvotes: 0

Views: 2820

Answers (2)

Alexander Farber
Alexander Farber

Reputation: 23018

Why do you need such a conversion?

Can't you use the ArrayCollection as dataProvider for the ComboBox?

Upvotes: 0

Subodh
Subodh

Reputation: 2214

Try this :

new ArrayList(yourArrayCollectionObject as Array);

Upvotes: 2

Related Questions