Array Problem

Hi,

I am facing one problem while I fetch data from XML and it crosses cretain level say if data in xml goes beyond 3000 then my flash file gets hunged and Abort operation Occurs.

It works fine with records say up to 100 or 200. Why is it so?

Now I have to display all the records in one page only.
Below is the sample of one node in my XML like this multiple will be their one below the other.

<reportdata rollno=“R73” name=“Adel Boulad” gender=“M” dob=“1992-06-24” age_on=“12 : 2” house=“N”/>

I am storing data in to multidimension array.

reportData[0][0] = R73
reportData[0][1] = Adel Boulad
reportData[0][2] = M
reportData[0][3] = 1992-06-24
reportData[0][4] = 12:2
reportData[0][5] = N

Like this.

Pls give any suggessions…about this…


aShIsH