Réponse acceptée !
Salut,
pour modifier l'alpha de textField il faut une police embarqué dans la biblio (avec un id de liaison -> exporter pour As ...)
import mx.transitions.Tween;
import mx.transitions.easing.*;
this.createTextField("txt", this.getNextHighestDepth(), 10, 10, 100, 22);
txt.embedFonts = true;
txt.text = "Hello World";
var tw:Tween = new Tween(txt, "_alpha", Elastic.easeInOut, 100, 10, 2, true);