Dear friends, i am new to Flex, and here is a problem i am struggling with:
<mx:Canvas id="map_target" dragEnter="doDragEnter(event, 'destinations')"> <mx:Repeater dataProvider="{destination_coll}" id="map_locations" > <mx:Image x="{map_locations.currentItem.x_coord}" y="{map_locations.currentItem.y_coord}" width="100" height="100" toolTip="{map_locations.currentItem.destination_name}" source="{map_locations.currentItem.thumbnail}" mouseDown="dragIt(currentImageSource,'my data here', event, 'myFormat')" /> </mx:Repeater> </mx:Canvas> Only thing i want is to drag an image made by repeater with coordinates driven from service and drop it to some other location on the same canvas. Can anyone help? Thanks in advance, Mickael