I am grabbing this array information with a DragEvent.DRAG_COMPLETE
listener if that helps. 


--- In flexcoders@yahoogroups.com, "He who runs with cattle"
<[EMAIL PROTECTED]> wrote:
>
> I have a TileList populated with a an array of images and using the
> default behavior of the allowDragSelection, dragEnabled, dropEnabled,
> dragMoveEnabled properties, the user can rearrange the list as needed. 
> 
> What I'm having a problem with is accessing the new order that the
> user has rearranged the images to. The tileList's dataProvider
> arrayCollection seems to push another position onto the array as a
> temporary place holder while creating the new order. However, the new
> order of the dataProvider does not seem to directly correspond to the
> order displayed in the TileList.
> 
> Is there an easy way to access the new order of the displayed tilelist
> after the user rearranges the list?
> 
> Here is what the arrayCollection looks like when the application first
> starts:
> 
> this.myArrayCollection = Array (@2998af1)
>       [0] = Object (@26cff01)
>               file_name = "1159664036.jpg"
>               id = "1"
>       [1] = Object (@295ffa1)
>               file_name = "11596647771.jpg"
>               id = "33"
>       [2] = Object (@295ffe1)
>               file_name = "11596647772.jpg"
>               id = "34"
> 
> Here is what the arrayCollection looks like after the user drags the
> first image to the right of the second image.
> 
> this.myArrayCollection = Array (@2998af1)
>       [0] = Object (@295ffa1)
>               file_name = "11596647771.jpg"
>               id = "33"
>       [1] = Object (@26cff01)
>               file_name = "1159664036.jpg"
>               id = "1"
>       [2] = Object (@26cff01)
>               file_name = "1159664036.jpg"
>               id = "1"
>       [3] = Object (@295ffe1)
>               file_name = "11596647772.jpg"
>               id = "34"
> 
> 
> 
> Thanks in advance.
>







--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/flexcoders/

<*> Your email settings:
    Individual Email | Traditional

<*> To change settings online go to:
    http://groups.yahoo.com/group/flexcoders/join
    (Yahoo! ID required)

<*> To change settings via email:
    mailto:[EMAIL PROTECTED] 
    mailto:[EMAIL PROTECTED]

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 



Reply via email to