views:

30

answers:

1

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

+1  A: 

Hi Jason

Look at example from package.

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

Is this you looked for?

Eugene
@Eugene. Here the CollectionEvent is not mx.events.collectionEvent, but the framework event
jason
can't you just add an event handler which listens for the framework event and dispatch the mx.events.collectionEvent on `theSet`?
hering
better post somewhere your project, so we could try to hack it in that way you want :)
Eugene
@Eugene I will post my project to a new question named "LinkedSet use in ComboBox issue"
jason