04/09/2007, 18:21
|
| | Fecha de Ingreso: marzo-2007
Mensajes: 782
Antigüedad: 17 años, 8 meses Puntos: 16 | |
Re: boton examinar para archivos de mi pc? Te informo que ya he conseguido la ventana para buscar archivos con este codigo: boton.onRelease = function() {
import flash.net.FileReferenceList;
var allTypes:Array = new Array();
var imageTypes:Object = new Object();
imageTypes.description = "Images (*.JPG;*.JPEG;*.JPE;*.GIF;*.PNG;)";
imageTypes.extension = "*.jpg; *.jpeg; *.jpe; *.gif; *.png;";
allTypes.push(imageTypes);
var textTypes:Object = new Object();
textTypes.description = "Text Files (*.TXT;*.RTF;)";
textTypes.extension = "*.txt; *.rtf";
allTypes.push(textTypes);
var fileRef:FileReferenceList = new FileReferenceList();
fileRef.browse(allTypes);
}
Voy a seguir investigando sobre el tema, bye... |