1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
class TextColor{
function TextColor(my_mc:MovieClip)
{
// creation d'un champ de texte (tf) de taille 800x600 positionnée a 0,0
my_mc.createTextField("tf",my_mc.getNextHighestDepth(),10,0,400,50);
// ecriture de "hello world" dans le champ de texte
my_mc.tf.text = "Hello world !\n\nVoici un petit exemple ...";
//formatage du texte
var my_fmt=new TextFormat("Sans", 18, 0x00FF00);
my_mc.tf.setTextFormat(my_fmt);
}
// entry point
static function main(mc) {
var app : TextColor = new TextColor(mc);
}
}
// user@workspace]# mtasc -swf ./TextColor.swf -main -header 800:600:20:CCCCCC ./TextColor.as |