|    
			
				20/01/2007, 21:26
			
			
			  | 
  |   |  |  |  |  Fecha de Ingreso: febrero-2004 
						Mensajes: 84
					 Antigüedad: 21 años, 8 meses Puntos: 0 |  | 
  |  Evitar garabar imagenes en el disco duro  
  Buenos dias, tardes, noches, segun sea el caso mi pregunta es esta se puede evitar que se guarden las imagenes en la carpeta archivos temporales de internet?Las cuales son cargadas desde un archivo xml.
 
 El codigo en el fla es el siguinete:
 
 stop();
 System.useCodepage = true;
 function loadPhotoXml(filename) {
 PhotoXml.load(filename);
 PhotoXml.onLoad = function(success) {
 if (success) {
 My_SlideNumber = 0;
 My_ParentNode = this.firstChild;
 My_TotalSlides = My_ParentNode.childNodes.length;
 showPhoto(My_SlideNumber);
 }
 // end if
 };
 }
 // End of the function
 function showPhoto(PhotoNum) {
 if (My_TotalSlides-1 == PhotoNum) {
 Next_btn.enabled = false;
 Next_btn._alpha = 5;
 } else {
 Next_btn.enabled = true;
 Next_btn._alpha = 100;
 }
 // end if
 if (PhotoNum == 0) {
 Previous_btn.enabled = false;
 Previous_btn._alpha = 2;
 } else {
 Previous_btn.enabled = true;
 Previous_btn._alpha = 100;
 }
 // end if
 var foto = My_ParentNode.childNodes[PhotoNum].attributes.foto;
 var dato = My_ParentNode.childNodes[PhotoNum].attributes.datos;
 var banda = My_ParentNode.childNodes[PhotoNum].attributes.banda;
 var contacto = My_ParentNode.childNodes[PhotoNum].attributes.contacto;
 var web = My_ParentNode.childNodes[PhotoNum].attributes.web;
 empty_mc.loadMovie("photos/"+foto);
 caption_text.text = dato;
 empty_mc._alpha = 10;
 band_text.text = banda;
 cont_text.text = contacto;
 web_text = "<font face=\"_sans\" size=\"10\" color=\"#FF9900\"><u><a href=\""+web+"\" target=\"_new\">"+web+"</a></u>";
 //------------------------
 this.onEnterFrame = function() {
 peso = empty_mc.getBytesTotal();
 cargado = empty_mc.getBytesLoaded();
 precarga_txt._visible = true;
 fondo._visible = true;
 if (cargado != peso) {
 precarga_txt.text = "Cargado "+Math.round(cargado*100/peso)+" %";
 } else {
 precarga_txt._visible = false;
 fondo._visible = false;
 if (empty_mc._alpha<100) {
 empty_mc._alpha = empty_mc._alpha+5;
 }
 }
 // end if
 };
 }
 // End of the function
 var My_SlideNumber;
 var My_TotalSlides;
 var My_ParentNode;
 var PhotoXml = new XML();
 PhotoXml.ignoreWhite = true;
 loadPhotoXml("photos.xml");
 
				__________________NO PUEDE LLOVER TODO EL TIEMPO
     |