+2  A: 

You're accessing imagesCollection variable in line 41, but haven't initialized it - it still contains null

Either change

[Bindable]
public  var  imagesCollection:ArrayCollection;

To

[Bindable]
public  var  imagesCollection:ArrayCollection = new ArrayCollection();

or add

imagesCollection  = new ArrayCollection();

to the beginning of xmlService_resultHandler method.

Amarghosh