Simon Lee Ibrar trace("Step through the array stored in XML"); num_children=array.numChildren; i=0; while (i lt num_children){ trace(array[i].name); i=i+1; } trace("Step through the array stored in Java"); num_children=nativeArray.numChildren; i=0; while (i lt num_children){ trace(nativeArray[i]); i=i+1; }