Как сохранить ресурс, например «нечто.rar», из Интернета, например, если он расположен на обычной веб-странице?
использовать FileReference.download () . Полный пример показан на странице Adobe Doc.
Вот основная идея:
var downloadURL:URLRequest = new URLRequest("http://www.[yourDomain].com/SomeFile.pdf"); var file:FileReference = new FileReference(); // add listeners to `file` to catch errors, handle progress, etc // (see adobe docs for a complete example of the possible listeners) file.download(downloadURL, fileName);
Вы ищете класс FileReference.Вот учебник .