English 中文(简体)
数据收集和从本地 Flash 文件传输
原标题:Data Collection and Transfer from Local Flash File

我继承了一个大型闪光脚本(在 AS2 中写下), 该脚本使用 < code> sharedObject 框架进行实验并保存数据。 此脚本将提供给用户, 让他们在本地机器上运行, 可能是在 USB 驱动器或 CD 上运行。 将本地存储的 < code> sharedObject 传输到这个 USB 驱动器或电子发送到这个 USB 驱动器的最简单的方式是什么? 能否将 < code> sharedObject 存储在与 swf 文件( 例如 USB 驱动器?) 相同的位置上? 我看到将闪光与 PHP 连接起来是可能的, 但是是否有纯粹的闪光方式通过电子邮件、 ftp 或其他协议将数据发送到服务器?

问题回答

我将避免尝试使用包含共享对象数据的文件。 即使您将这些文件复制到 USB 驱动器中, 您也不得不写入一个应用程序, 该应用程序知道如何打开每个文件并获取数据 。 共享对象数据是用户专用的, 所以不清楚以后的过程如何运作 。

不幸的是,我对AS2 -- -- 只有AS3 -- -- 的编程一无所知。

大部分情况下, 在 Actionscript 中, 使用 HTTP 将数据发送到服务器。 还有其他方法, 但显然这是最直线的前进方式 。

如果您在 AS3 中编程, 您可以使用 URL Loader、 URLRequest、 URLVables 类一起进行 HTTP POST 或进入服务器 。

使用 AS2 进行 HTTP POST/ GET 操作时, 我发现了一些链接 :

您可以在 ActionScript 2. 0 中以 < a href=] 的方法将文件保存到本地文件系统 。 http:// help. adobe. com/ en_ US/ FlashPlatform/ reference/ reference/ actionscript/3/flash/ net/ FileReference.html? filter_flash=cs5& filter_flashplayer=10.2& filter_air=2.6" rel=" nofol"\\ code> FileReference.save () 。 这将打开一个对话框, 允许用户将文件保存到他们选择的位置 。 您可以自由选择输出数据的最合适的格式 。





相关问题
Disable button tooltip in AS3

I want to disable the tooltip on certain buttons. The tooltip manager seems to be an all or nothing solution. Is it possible to disable the tooltip for just one or two buttons?

Sorting twodimensional Array in AS3

So, i have a two-dimensional Array of ID s and vote count - voteArray[i][0] = ID, voteArray[i][1] = vote count I want the top 3 voted items to be displayed in different colors, so i have a 2nd Array -...

Virtual Tour using sketch up, ajax, flash technologies

I want to know if there are existing technology that make your 3d models in sketch into virtual tours, using either Ajax or Flash for web presentation. If there s none, which will be a good approach ...

AS3 try/catch out of memory

I m loading a few huge images on my flex/as3 app, but I can t manage to catch the error when the flash player runs out of memory. Here is the what I was thinking might work (I use ???? because i dont ...

Red5 Security Tutorial

I am looking for a step by step tutorial on securing Red5 from intrusion. This seems to be a question that comes up alot in a google search, but is never really answered in a way that makes sense to ...

Clipboard access using Javascript - sans Flash?

Is there a reliable way to access the client machine s clipboard using Javascript? I continue to run into permissions issues when attempting to do this. How does Google Docs do this? Do they use ...

visible property of DisplayObject

For example I have a hierarchy of movie clips. mc1 is a child of mc, and mc2 is a child of mc1. Turns out that when I set mc1.visible = false; mc2.visible stays true. Is that supposed to happen?...

热门标签