les pongo parte del codigo que uso para generar el TextField y lo que he intentado...
Código ActionScript :
import caurina.transitions.Tweener; var miFormato:TextFormat = new TextFormat(); miFormato.font = "Comic Sans MS"; miFormato.size = 18; miFormato.color = 0x333333; miFormato.align = "center"; this.createTextField("txtGasto", this.getNextHighestDepth(), 10, 10, 160, 120); txtGasto.text = "Foo"; txtGasto.autoSize = true; txtGasto.setTextFormat(miFormato); // Al descomentar esta linea deja de aparecer el texto con miFormato //txtGasto.embedFonts = true; txtGasto._x = (Stage.width-txtGasto._width)/2; txtGasto._y = (Stage.height-txtGasto._height)/2; // Intentos Fallidos de rotacion //txtGasto._rotation = 45; //Tweener.addTween(txtGasto, {time: 1, transition:"linear",_rotation:-90});
Aqui les dejo el link del archivo FLA, espero que me puedan ayudar ya que no he logrado tener ningun resultado... Gracias!
http://www.4shared.com/zip/FR8G0Ev3/rotateTextFieldAS2.html