AS2 to AS3 - "_level"

Hello,

I am trying to convert some of my AS2 files to AS3. I am completely new to AS3 and it is proving to be more difficult than I thought.

In an AS2 file, I had a very simple loop which removed all text from a series of text boxes (named n1 to n32):

while (i<33) {
        _level0["n"+i].text = "";
i++;
}

I have found out that ‘_level’ is not supported in AS3.

Can anyone tell me how the code should be written in AS3?

Thanks for any help,

David