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
views:
30answers:
1
+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
2010-08-25 09:05:57
@Eugene. Here the CollectionEvent is not mx.events.collectionEvent, but the framework event
jason
2010-08-25 10:07:57
can't you just add an event handler which listens for the framework event and dispatch the mx.events.collectionEvent on `theSet`?
hering
2010-08-25 11:48:27
better post somewhere your project, so we could try to hack it in that way you want :)
Eugene
2010-08-25 13:23:02
@Eugene I will post my project to a new question named "LinkedSet use in ComboBox issue"
jason
2010-08-26 02:20:34