I have the following code below hard-coding the x/y coordinates of 8 movie clips. I am trying to write some code that will generate this so that it will accomodate any number of content clips so that I do not have to go back in and create new x/y corrdinates for additional clips. Any help with creating this for loop would be greatly appreciated.
Basically, it is 2 columns of movie clip content with 120 pixels between the rows:
clipContainer.content1._x = 0;
clipContainer.content1._y = 35;
clipContainer.content2._x = 240;
clipContainer.content2._y = 35;
clipContainer.content3._x = 0;
clipContainer.content3._y = 155;
clipContainer.content4._x = 240;
clipContainer.content4._y = 155;
clipContainer.content5._x = 0;
clipContainer.content5._y = 275;
clipContainer.content6._x = 240;
clipContainer.content6._y = 275;
clipContainer.content7._x = 0;
clipContainer.content7._y = 395;
clipContainer.content8._x = 240;
clipContainer.content8._y = 395;