使用 FileReference 在 Flash Projector 中保存本地文件?
我正在制作一个 Flash 投影仪,它将以 CD 形式分发。我想让人们从 CD 上复制文件。这可能吗?我应该使用 FileReference 吗?
I'm making a Flash projector which will be distributed on CD. I want to allow people to copy files off of the CD. Is this possible? Should I be using FileReference?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您的目标是 Flash Player 10(公共设置 [Ctrl+Alt+F2] -> Flash -> Player),则可以使用 FileReference.save() 方法。
旧方法是将其上传到服务器并使用 FileReference.download(),但不再需要这样做(除非您需要 FP9 兼容性)。
这是有关如何使用它的快速简单的教程:
http://blog.everythingflex.com/2008/ 10/01/filereferencesave-in-flash-player-10/
If you target Flash Player 10 (Public Settings [Ctrl+Alt+F2] -> Flash -> Player), you can use the FileReference.save() method.
The old method was to upload it to a server and use FileReference.download(), but this is not needed anymore (unless you need FP9 compability).
Here's a quick and simple tutorial on how to use it:
http://blog.everythingflex.com/2008/10/01/filereferencesave-in-flash-player-10/