Flex 预加载器未显示

发布于 2024-10-14 14:51:21 字数 172 浏览 2 评论 0原文

由于某些奇怪的原因,我的 Flex 3.5 应用程序的预加载器没有显示。应用程序 SWF 大小约为 550KB。我不使用 RSL。从 Safari 的“活动”选项卡中,我可以看到浏览器中 SWF 加载的进度。 SWF 加载后。预加载器出现的瞬间,从 0 移动到 100,然后消失。

有什么解决办法还是我做错了什么?

For some weird reason the preloader for my Flex 3.5 application does not show up. The application SWF is around 550KB. Am not using RSLs. From the Activity tab in Safari I see the progress of the SWF loading in the browser. After the SWF is loaded. The preloader comes for a split second, moves from 0 to 100 and goes away.

Any solution or am I doing something wrong?

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

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

发布评论

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

评论(1

剧终人散尽 2024-10-21 14:51:21

您可以使用 Flex 4 SDK 中的 swfdump(只需从命令行调用它)来查看 SWF 的结构。确保第二个 FrameLabel 标记之前有许多(35 个左右)DoABC2 标记。如果是这种情况,那么你的问题是你在启动时初始化了太多的东西(在预加载器消失之后)。使用延迟实例化可以防止在启动时创建很多东西。

You can use swfdump from the Flex 4 SDK (just call it from the command line) to see the structure of the SWF. Make sure there are many (35-ish) DoABC2 tags before the second FrameLabel tag. If that is the case then your problem is that you are initializing too much stuff on startup (after the preloader is gone). Use deferred instantiation to prevent so many things from being created at startup.

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