Adding Transitions : Help!

Basically, i am trying to read data from an xml file and display it on a dynamic text field. Assuming i have 100 rows in my xml and i have 10 dynamic text fields in one frame i would like to display all the rows in the xml file one frame after another with a 5 sec delay.

Would like to know how to add transitions to these text fields.

Code is as follows:

description=[];
description[0]=“1 Slide 1 Pic”;
description[1]=“1 Slide 2 Pic”;
description[2]=“1 Slide 3 Pic”;
description[3]=“2 Slide 1 Pic”;
description[4]=“2 Slide 2 Pic”;
description[5]=“2 Slide 3 Pic”;
description[6]=“3 Slide 1 Pic”;
description[7]=“3 Slide 2 Pic”;
description[8]=“3 Slide 3 Pic”;
previous_btn.onRelease=function()
{
prevImage();
};
next_btn.onRelease=function()
{
nextImage();
};
p=0;
this.onEnterFrame=function()
{
pic1.dyn.text=description[p];
pic2.dyn.text=description[p+1];
pic3.dyn.text=description[p+2];

};
stop();
//p=p+3;
function nextImage()
{
pic1.dyn.text=description[p];
pic2.dyn.text=description[p+1];
pic3.dyn.text=description[p+2];
p=p+3;
if ( p >=9)
{
p=0;
}
slideShow();

};
function prevImage()
{
p=p-3;
if ( p <=0)
{
p=0;
}
pic1.dyn.text=description[p];
pic2.dyn.text=description[p+1];
pic3.dyn.text=description[p+2];

};
function slideShow()
{
myInterval=setInterval(pause_slideshow,3000);
function pause_slideshow()
{
clearInterval(myInterval);
if (p>=9)
{
p=0;
firstImage();
}
else
{
nextImage();
}
};

};
function firstImage()
{
p=0;
pic1.dyn.text=description[p];
pic2.dyn.text=description[p+1];
pic3.dyn.text=description[p+2];
slideShow();
};