AS 2.0 for loop syntax error?

Hello everyone.

For some reason no matter how many time i write a for loop, i seem to always run into issues tracking the instances. Ive recently been trying to learn the new syntax for AS 2.0 so i am trying to write a loop to attach some movieClips to the stage in an orderly fashion.

The code I have is as follows:


//create a "container" clip for the movies
this.createEmptyMovieClip("players_mc", this.getNextHighestDepth());
var player:MovieClip;

for(var i:Number = 0; i<14; i++){
	//linkage identifier is "playerB_mc"
	player = this.players_mc.attachMovie("playerB_mc", "player"+i, this.getNextHighestDepth());
	//amount to offset _x each time a clip is place
	var xIndent:Number = player._x + player._width
	//tracing "104" every iteration
	trace(xIndent);
	if(i == 0){
		player._x = 0;
		player._y = 0;
	} else if (i>0 && xIndent < (Stage.width - 5)){
		player._x += player._width;
	} else {
		player._x = 0;
		player._y += player._height;
	}
}

Can anyone help point me in the right direction?
Thanks in advance.