[flexcoders] Repeater Order

2006-01-03 Thread Nick
I am in the process of converting several existing CF applictions over to Flex 1.5. One of the CFCs returns an array of structures that I am sucessfully displaying using an mx:Image tag within a mx:Repeater. However, the order of the display is wrong, I need to go from the n-th image down to the

Re: [flexcoders] Repeater Order

2006-01-03 Thread Johannes Nel
if that functionality does not exist you can wrap the array in an object and expose its getItemAt invertedly but i suspect something like that would be built into the functionality as is so just check the documentation cheers On 1/3/06, Nick [EMAIL PROTECTED] wrote: I am in the process of

RE: [flexcoders] Repeater Order

2006-01-03 Thread Gordon Smith
Repeater always steps by +1, but the Array class has a reverse() method. - Gordon -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Nick Sent: Tuesday, January 03, 2006 2:46 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Repeater Order