а может через setInterval как нибудь попробовать
Добавлено через 2 минуты
после добавления сетчилдиндекс выскочила ошибка RangeError: Error #2006: The supplied index is out of bounds.
Добавлено через 5 минут
вот после всех изменений

Код AS3:
package p {
import flash.display.*;
import flash.utils.*;
import flash.net.*;
import flash.events.*;
import flash.text.*;
import flash.display.Sprite;
import flash.display.DisplayObjectContainer;
public class DrawName extends MovieClip {
private var nam;
private var cont:Sprite = new Sprite();
private var timer;
public function DrawName() {
}
public function drawNam(){
this.nam = new CreateButton('Кожа', 30, 0xff0000, "Times New Roman", true, false, 90, 60,
100, 100, TextFieldAutoSize.CENTER,
TextFormatAlign.CENTER, false, null, false, null,
false, null);
this.cont.addChild(nam);
this.cont.alpha = 1;
addChild(cont);
this.timer = new Timer(100, this.cont.alpha/0.05);
this.timer.addEventListener(TimerEvent.TIMER, timerListener);
this.timer.start();
}
private function timerListener(e:TimerEvent) {
this.cont.alpha -= 0.05;
addChild(cont);
}
}
}