Help understanding script for rotating objects

Hi all
would some help me with this, I am trying to understand what part of AS3 script says loop through(create a continues 360 loop of objects) the images from an XML file, does this make any sense.

in my script I have this

for(var i:int = 0; i < images.length(); i++)

is this the part that says loop the images/objects
this is a little more to the script including the above to maybe understand better?

private function onXMLComplete(event:Event):void
{
// Create an XML Object from loaded data
var data:XML = new XML(xmlLoader.data);
 
// Now we can parse it
var images:XMLList = data.image;
 
for(var i:int = 0; i < images.length(); i++)  <<<<<<<<FROM ABOVE ///  {
// Get info from XML node
var imageName:String = images*.@name;
var imagePath:String = images*.@path;
var titles:String = images*.@title;
var texts:String = images*.@text;