15/03/2012, 14:57
|
| | Fecha de Ingreso: marzo-2012
Mensajes: 24
Antigüedad: 12 años, 9 meses Puntos: 7 | |
Respuesta: convertir a AS3 (otra vez yo) yo tengo una aplicacion para cargar una foto y este es el codigo, ojala te sirva
var miContenedor:Loader = new Loader();
miContenedor.contentLoaderInfo.addEventListener(Pr ogressEvent.PROGRESS, statusdeCarga);
miContenedor.contentLoaderInfo.addEventListener(Ev ent.COMPLETE, imagenLista);
var llamarImagen: URLRequest=new URLRequest("impfot.jpg");
miContenedor.load(llamarImagen);
function statusdeCarga(e:ProgressEvent):void
{
var parciales:Number = e.target.bytesLoaded;
var totales:Number = e.target.bytesTotal;
var porciento: Number = parciales/totales*100;
porciento = Math.round(porciento);
info_txt.text = String(porciento+ " %");
}
function imagenLista(e:Event)
{
addChild(miContenedor);
} |