>Ehm.....si....perchè?Sto facendo qualche madornale errore?
Si, tanti, troppi.. 
Dovresti forse vedere gli oggetti che stai usando uno ad uno, perchè se arrivi ad usarli senza conoscere i particolari che ti servono, trovare poi gli errori è molto più difficile..
codice:
this.createEmptyMovieClip("draw_mc", 1);
this.numText = 0;
function writeText(x,y,colore)
{
var f = new TextFormat();
f.color = colore;
f.underline = false;
this.draw_mc.createTextField("mytext" + this.numText, this.numText, x, y, 70, 100);
var t = this.draw_mc["mytext" + this.numText];
t.selectable = false;
t.multiline = true;
t.wordWrap = true;
t.text = "prova";
t.setTextFormat(f);
this.numText++;
}