This content has been marked as final.
Show 3 replies
-
1. Re: locating ListCollectionView
Raymond Basque Apr 8, 2009 8:53 AM (in response to dan_hin)ListCollectionView is in the same folder as ArrayList in all the SDK versions I have.
What error, if any are you getting?
I threw this into a new .fla and it works as expected:
import mx.collections.*;
var al:ArrayList = new ArrayList();
al.addItem("Hello");
al.addItem("World");trace(al) // output: Hello,World
-
2. Re: locating ListCollectionView
dan_hin Apr 8, 2009 3:28 PM (in response to Raymond Basque)so that was weird. I downloaded the most recent stable source I could get, and there was ListCollectionView. very odd.
Thanks for the help though, knew it was summat stupid!
Dan
-
3. Re: locating ListCollectionView
dan_hin Apr 9, 2009 3:08 AM (in response to Raymond Basque)hmm, ok well now I'm still getting the same error, even though I've explicitly imported ListCollectionView and ArrayCollection. the error is:
1017: The definition of base class ListCollectionView was not found.
how annoying.

