Help with createTextField

Trying to learn actionscript and I do not understand why I can not make the text width and height bigger but I can make it smaller. Here is the code I am using

this.createEmptyMovieClip(“myText_mc”, 0);
myText_mc.createTextField(“word_txt”,0,20,100,100,100);
myText_mc.word_txt.text = " Hi Britni";
myText_mc.onEnterFrame = function() {
this._x += 5;
};