hola. supongo que se refiere al codigo del tutorial del componente textarea, que es este. agregando simplemente dos líneas que pasan valores a las propiedades _x _y del mismo depues del attach
Algo asi:
mi_texto._x = 100;
mi_texto._y = 100;
//Atacheamos el componente
attachMovie("TextArea", "mi_texto", 1);
//Propiedades
mi_texto.setSize(300, 200);
mi_texto.editable = true
mi_texto.html = true;
mi_texto.maxChars = null;
mi_texto.password = false;
mi_texto.restrict = "^aeiou";
mi_texto.wordWrap = true;
mi_texto.vScrollPolicy = "on";
mi_texto.hScrollPolicy = "off";
mi_texto._x = 100;
mi_texto._y = 100;//Texto
mi_texto.text = "<p>The properties of the <b>TextArea</b> class allow you to set the text content, formatting, and horizontal and vertical position at runtime.You can also indicate whether the field is editable, and whether it is a '<i>password</i>' field. You can also restrict the characters that a user can enter.</p><br><p>Setting a property of the TextArea class with ActionScript overrides the parameter of the same name set in the <b>Property inspector</b> or <b>Component Inspector panel</b>.</p><br><p>The <b>TextArea</b> component overrides the default Flash Player focus rectangle and draws a custom focus rectangle with rounded corners.</p><p>The <b>TextArea</b> component supports <i>CSS styles</i> and any additional HTML styles supported by Flash Player.</p><br><p>Each component class has a version property which is a class property. Class properties are only available on the class itself. The version property returns a string that indicates the version of the component. To access the version property, use the following code:</p><br><pre>trace(mx.controls.TextArea.version)</pre>";
//Listener para cuando se cambia el texto
alCambiar = new Object();
alCambiar.change = function(evento){
trace("Posición vertical actual: " + evento.target.vPosition);
trace("Posición vertical máxima: " + evento.target.maxVPosition);
trace("Posición horizontal actual: " + evento.target.hPosition);
trace("Posición horizontal máxima: " + evento.target.maxHPosition);
trace("Caracteres escritos en el texto: " + mi_texto.length);
}
//Eventos
mi_texto.addEventListener("change", alCambiar);
y listo

de la misma forma puede moverlo cuando quiera