What problem with positioning are you having?
You can set the initial _y coordinate here
Code:
var yPos:Number = 0; // Initial _y coordinate of the first row
You can set the interval that _y position changes per row here
Code:
yPos = yPos + 100; // incease the _y coordinate for the next row (100 = height of element plus padding)
If this value is the same as the spacing variable, you can change the 100 to spacing.
The _x position is set here
Code:
this.thumbHolder._x = count*spacing // set _x coordinate
This assumes that spacing is the width of the movieclip + any buffer zone you wish to have.
If the 2nd row onwards is shifted to the right more than you would like, you'll need to change this:
Code:
count = 0; // reset count to 0
to
Code:
count = -1; // reset count to 0
HTH
Bookmarks