 
			
				17/02/2008, 15:48
			
			
			     |  
      |    |    |    Fecha de Ingreso: diciembre-2004  
						Mensajes: 418
					  Antigüedad: 20 años, 11 meses Puntos: 2     |        |  
  |      Re: FLASH PAPER - como hacer un Select All        Yo cargo asi un flash paper:   
loadFlashPaper("Doc2.swf", carga, 750, 600); 
//los 2 ultimos numeros es el tamaño del flash paper 
function loadFlashPaper(path_s, dest_mc, width_i, height_i, loaded_o) { 
	var intervalID = 0; 
	var loadFunc = function () { 
		carga._visible = false; 
		var fp = carga.getIFlashPaper(); 
		if (!fp) { 
			return; 
		} 
		if (fp.setSize(width_i, height_i) == false) { 
			return; 
		} 
		carga._visible = true; 
		clearInterval(intervalID); 
		loaded_o.onLoaded(fp); 
	}; 
	intervalID = setInterval(loadFunc, 100); 
	carga.loadMovie(path_s); 
}           |