Trabajo con Flash 8 prof:
- en mi ordenador, en FLASH - probar película - todo funciona MUY BIEN
- en internet, por medio de Explorer o Safari o FireFox, NO FUNCIONA
La pantalla de descargar se abre en Windows (XP SP2), hago clic en Guardar, Y NADA. Se sierre la pantalla y no guarda el fichero ni manda ningún evento a FLASH
¿Quien me pueda ayudar?
----------------------------
import flash.net.FileReference;
System.security.allowDomain("http://web.mac.com/sergioperezcastillo/Sitio_web_23/Media/");
var listener:Object = new Object();
listener.onCancel = function(file:FileReference):Void {
VarError.text = "canceled";
}
listener.onProgress = function(file:FileReference, bytesLoaded:Number, bytesTotal:Number):Void {
VarError.text = "bytes total: " + bytesTotal + " bytes cargado: " + bytesLoaded;
}
listener.onComplete = function(file:FileReference):Void {
VarError.text = "Done";
};
listener.onIOError = function(file:FileReference):Void {
VarError.text = "IO error";
};
var fileRef:FileReference = new FileReference();
fileRef.addListener(listener);
if(!fileRef.download("http://web.mac.com/sergioperezcastillo/Sitio_web_23/Media/Libre.mp3", "Libre.mp3")) {
VarError.text = "can not open the file dialogo"
};
stop();
---------------------------------