createTextField problem

Hi all,
i have a little problem… I want create 3 dynamic text fields with createTextField function and i want apply a TextFormat on all three text fields.
I use this code:

var textWidth:Number = 365;
var textHeight:Number = 70;
var textX:Number = 285;
var textY:Number = 92;
var textStyle:TextFormat = new TextFormat();
textStyle.font = “Arial”;
textStyle.size = 11;
textStyle.color = 0x646464;

for (var i:Number = 0; i < 3; i++) {
_root.createTextField(“text” + i, 1, textX, textY, textWidth, textHeight);
_root[“text” + i].setTextFormat(textStyle);
_root[“text” + i].multiline = true;
_root[“text” + i].html = true;
_root[“text” + i].text = "Testing " + i;
textY = textY + 120;
}

but the problem is, that only one text field is created - text2, and also TexTFormat can´t be apply to this text field. If someone know where is the problem i would be really thankfull :}