funkcja downloadToDesktop (filename): pustka {
var ścieżka: Sznurek = catalogPath + filename;
var prośba: URLRequest = nowy URLRequest (ścieżka);
var localRef: FileReference = nowy FileReference ();
localRef.addEventListener (Event.COMPLETE, downloadComplete);
localRef.addEventListener (IOErrorEvent.IO_ERROR, downloadIOError);
localRef.download (prośba);
}
funkcja downloadComplete (e: Wydarzenie): pustka
{
ślad ("Ściąganie zupełny. Użytkownik ściągać: ", FileReference (e.currentTarget) .name)
}
funkcja downloadIOError (e: IOErrorEvent): pustka
{
ślad ("Ściąganie błąd: ", e.text, "\ nCannot ściąganie: ", FileReference (e.currentTarget) .name);
}
|