SWF 文件的 Ajax 预加载器..可能吗?
我正在寻找一个基于 javascript 的预加载器,可以处理 .SWF (flash) 文件。
我非常清楚可以使用另一个 flash 文件来预加载 flash 文件,但我想知道是否有人知道可以加载 swfs 的 AJAX 预加载器(另外,progressEvent 将是一个很好的额外功能),然后添加Flash 文件转换为 HTML 文档。
我做了很多谷歌搜索,但似乎没有这样的东西。这可能吗?
谢谢 !
I am looking for a javascript based preloader that can handle .SWF (flash) files.
I'm very much aware that it is possible to preload a flash file by using another flash file, but I was wondering if anyone knows about an AJAX preloader that can load swfs (also, a progressEvent would be a nice extra) and then add the flash file to the HTML document.
I did quite some googling but it seems that there is no such thing out there. Is it überhaupt possible ?
Thanks !
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,没有什么不可能:在隐藏的 div 上加载 SWF,并在 SWF 中提供额外的外部接口用于进度监控,以便您的 SWF 可以通过外部方法或回调报告上传进度。下载完成后,您可以只显示该 DIV,或者将其加载到另一个 DIV 中,它将从缓存中加载。
Well, nothing impossible: Load SWF on a hidden div, and provide additional external interface in SWF for progress monitoring, so that your SWF can report upload progress via external method or a callback. When it's done downloading, you can just show this DIV, or load it in another DIV, and it will be loaded from cache.