|    
			
				13/12/2005, 15:51
			
			
			  | 
  |   |  |  |  |  Fecha de Ingreso: abril-2005 Ubicación: Santa Cruz de Tenerife 
						Mensajes: 40
					 Antigüedad: 20 años, 6 meses Puntos: 0 |  | 
  |   Interesante Problema.... 
  Hola gente aqui tengo un Preloader, pero en FLASH 2004  sin Problemas y en Flash 8  me dice ERROR de Sintaxis..  a ver como lo ven.. 
 SUPUESTAMENTE EL ERROR ESTA EN EL FOTOGRAMA 2 DONDE DICE   add "%";
 
 Fotograma1
 
 //iniciamos variables y propiedades
 estado=0;
 setProperty("pBar",_xscale,0);
 
 Fotograma 2
 
 //calculamos el porcentaje cargado y lo aplicamos a
 //nuestra barra y campo de texto
 setProperty("pBar", _xscale, iBytes);
 estado=iBytes add "%";
 iBytesTotal = _root.getBytesTotal();
 iBytesLoaded = _root.getBytesLoaded();
 iBytes = ((iBytesLoaded * 100) / iBytesTotal);
 iBytes = int (iBytes) ;
 
 Fotograma 3
 
 //refrescamos
 if (iBytes<100) {
 iBytes=iBytes+2;
 gotoAndPlay(2);
 } else { //carga completa
 estado='COMPLETE'
 gotoAndPlay(4);
 }
 
 
 Alguien conose algun tutorial para Loaders en FLASH 8 ...
 
 Gracias de Antemano
     |