Re: Re[flexcoders] versing an ArrayCollection

2008-10-27 Thread Fotis Chatzinikos
if you cannot revert the arraycollection (even via its source as Paul suggested) why do not you do it manually? On Fri, Oct 24, 2008 at 5:47 PM, jer_ela [EMAIL PROTECTED] wrote: I'm guessing that these aren't just random values that you want in the opposite order of how you got them, but

Re: Re[flexcoders] versing an ArrayCollection

2008-10-26 Thread jer_ela
I'm guessing that these aren't just random values that you want in the opposite order of how you got them, but are sorted, but in the wrong direction. If that is the case you can apply a sort to the array collection that puts them in the order you want them. --- In flexcoders@yahoogroups.com,

Re[flexcoders] versing an ArrayCollection

2008-10-23 Thread Sceneshift
Hey guys, I have an array collection which I populate from a web service. It consists of a bunch of objects which I access by aryCollection[num]. My problem is, I need to reverse the contents. ArrayCollection doesn't have a .reverse(); function, so can anyone suggest a solution? -- View this

Re: Re[flexcoders] versing an ArrayCollection

2008-10-23 Thread Paul Andrews
- Original Message - From: Sceneshift [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Thursday, October 23, 2008 5:12 PM Subject: Re[flexcoders] versing an ArrayCollection Hey guys, I have an array collection which I populate from a web service. It consists of a bunch