Re: [flexcoders] How to apply a custom sort to ArrayCollection??

2008-11-14 Thread Adrian Williams
Thanks Josh, That was exactly what I was looking for...didn't think to access the compareFunction property of the sort() function... Adrian Josh McDonald wrote: var s : Sort = new Sort(); s.compareFunction = myComparer; collection.sort = s; -Josh On Fri, Nov 14, 2008 at 9:14 AM, Adrian

Re: [flexcoders] How to apply a custom sort to ArrayCollection??

2008-11-13 Thread Josh McDonald
var s : Sort = new Sort(); s.compareFunction = myComparer; collection.sort = s; -Josh On Fri, Nov 14, 2008 at 9:14 AM, Adrian Williams <[EMAIL PROTECTED]>wrote: > All, > > I have an ArrayCollection that I'd like to perform an advanced, custom > sort on before it's loaded into a List...the c