Código :
preloader.onLoadStart = function(target) {
target.createTextField("my_txt",0,0,0,100,20);
target.my_txt.setNewTextFormat(new TextFormat("Verdana", 12, 0xFF5B24, false));
};
preloader.onLoadProgress = function(target, loadedBytes, totalBytes) {
target.my_txt.text = Math.floor((loadedBytes/totalBytes)*100);
};
preloader.onLoadComplete = function(target) {
new Tween(target, "_alpha", Strong.easeOut, 0, 100, .5, true);
target.my_txt.removeTextField();pero me gustaría poder agregar otra clase de cargador, como una barra u alguna otra imagen que unos simples numeritos. El punto es que no se cómo hacerlo variando el código anterior o alterándolo completamente.
Muchas gracias y agradecería vuestras respuestas.
