Flex 预加载器未显示
由于某些奇怪的原因,我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 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.