Avatar

Level 7

To have an instance appear somewhere other than the bottom when added, you can use the moveInstance function, i.e. -

_row1.addInstance(true);

_row1.moveInstance((_row1.count-1), newIndexPosition);

where _row1.count-1 is the newly added row and newIndexPosition is where you want the new row to end up.