在两个 Flash 影片之间传递 FileReference

发布于 2024-09-06 03:52:55 字数 215 浏览 5 评论 0原文

我有一个带有 flash 对象的 html 页面,该对象使用 stratus 提供视频聊天。 我想在同一 html 页面上从不同的 UI 启用文件共享。 我想使用相同的 stratus 连接来发送文件。

是否可以创建一个小的 Flash 对象,该对象将显示一个浏览按钮并让用户选择一个文件,然后将 FileReference 或文件详细信息传递给 stratus 对象以发送它?

谢谢

I have an html page with a flash object that provides video chat using stratus.
I want to enable file sharing from a different UI on the same html page.
I want to use the same stratus connection to send the file.

Is it possible to create a small flash object that will present a browse button and let the user choose a file and then pass the FileReference or file details to the stratus object to send it?

Thanks

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

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

发布评论

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

评论(1

苏辞 2024-09-13 03:52:55

如果两个 SWF 位于同一页面上,您应该能够 LocalConnection API 允许两部电影之间进行双向通信。

我没有直接尝试过这种方法来传递 FileReference 对象,但值得注意的是,使用 LocalConnection.send() 时文件大小限制为 40K - 您可以通过首先序列化 FileReference 对象并发送来解决此问题它分成大块。

If the two SWFs are on the same page, you should be able to the LocalConnection API to allow two way communication between the two movies.

I have not directly tried this approach for passing a FileReference object, but it is worth noting that there is a filesize restriction of 40K when using LocalConnection.send() - you may be able to get around this by serialising your FileReference object first and sending it over in chunks.

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