将本地文件下载到新文件夹?阿斯3

发布于 2024-12-11 19:46:07 字数 178 浏览 0 评论 0原文

我已经搜索了几个小时没有运气。我是 as3 的新手,我无法弄清楚这一点。

我有一个 swf,我想单击一个按钮,让它打开一个“另存为”框(或类似的东西)并将指定文件保存到我选择的位置。

基本上,它将创建该文件的副本到新位置。

如果有人可以帮助我,我很乐意听到!

亲切的问候, 杰克

I've searched for hours no luck. I'm new to as3 and i can't figure this out.

I have a swf and i want to click a button and for it to open a "save as" box (or something similar) and save a designated file to a location of my choice.

Basically it would be creating a copy of this file to a new location.

If anyone could help my I'd love to hear it!!!

Kind Regards,
Jack

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

初熏 2024-12-18 19:46:07
import flash.net.FileReference;
var fr:FileReference = new FileReference();
fr.save(yourByteArray, fileName);

这将打开“另存为”框。

import flash.net.FileReference;
var fr:FileReference = new FileReference();
fr.save(yourByteArray, fileName);

this will open "save as" box .

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文