AS2.0 Need help accessing variables in an attached clip

I creating several clips using the code below:
for (i=0; i<=5; i++) {
var attachName = “Category”+i;
var newName = “CategoryP”+i;
this.createEmptyMovieClip(attachName,i);
this[attachName].attachMovie(“CategoryPanel2”,newName,this.getNextHighestDepth());
this[attachName]._x = this[“Category”+(i-1)]._x+86;

}

Inside the attached clip there is a dynamic text field with an instance name of catHdr_Ins, variable name varCatHdr.

I cannot for the life of me reference that text field…

Any help would be greatly appreciated!

TYIA!