jason
jason

Reputation: 1631

write an adapter that maps all the LinkedSetFx events to the expected Flex collection events(As3Common-collection)

LinkeSetFx has its own CollectionEvent, but I don't know how to map the LinkedSetFx event to mx.events.collectionEvent(I want use it in ComboBox). LinkedSetFx is in AS3Commons-collection framework.Here is the url, choose the as3commons-collections-1.0.0.zip, you'll find LinkedSetFx in src\org\as3commons\collections\fx

Upvotes: 0

Views: 87

Answers (1)

Eugene
Eugene

Reputation: 2216

Look at example from package.

 var theSet : LinkedSetFx = new LinkedSetFx();
 theSet.addEventListener(CollectionEvent.COLLECTION_CHANGED, changedHandler);

Is this you looked for?

Upvotes: 2

Related Questions