Funktion downloadToDesktop (Dateiname): Lücke {
var-Weg: Schnur = catalogPath + Dateiname;
var-Antrag: URLRequest = neues URLRequest (Weg);
var localRef: FileReference = neues FileReference ();
localRef.addEventListener (Event.COMPLETE, downloadComplete);
localRef.addEventListener (IOErrorEvent.IO_ERROR, downloadIOError);
localRef.download (Antrag);
}
Funktion downloadComplete (e: Ereignis): Lücke
{
Spur („Download komplett. Benutzer herunterlud nterlud: “, FileReference (e.currentTarget) .name)
}
Funktion downloadIOError (e: IOErrorEvent): Lücke
{
Spur („Downloadstörung: “, e.text, „\ nCannot Download: “, FileReference (e.currentTarget) .name);
}
|