05/12/2008, 12:22
|
| | Fecha de Ingreso: agosto-2005 Ubicación: http://descargajuegosgrat
Mensajes: 365
Antigüedad: 19 años, 3 meses Puntos: 3 | |
Respuesta: Preloader en MC? Lynxcraft, este es el as que estoy usando, mi problema, es que al tener un play(); al final ahora parece que el swf cargado no respeta sus propios stop(); en su linea de tiempo...ni siquiera teniendo un lockroot=true; :(
loadMovie("editorial.swf", _root.center_mc.container.myContainer);
_root.center_mc.container.myContainer.stop();
this.onEnterFrame = function() {
if (_root.center_mc.container.myContainer.getBytesTot al()>1) {
percent = int(_root.center_mc.container.myContainer.getBytes Loaded()/(_root.center_mc.container.myContainer.getBytesTot al())*100);
text_info.text = percent+"%";
bar_mask._xscale = percent;
if (percent>=100) {
_root.center_mc.container.myContainer.play();
}
}
};
gracias! |