Avatar

Level 10

Hi,

What I have done in the past is to loop through the repeating instance until the count is back to what I want. The following is additional script in a reset button:

// loop through table and delete rows


while (Table1._Row1.count > 1)

{

     Table1._Row1.removeInstance(0);

}

Row1 in the repeating object and the underscore '_' is shorthand for instanceManager.

Hope that helps,

Niall