为什么 loaderInfo 仅在 applicationComplete 触发后才可用?

发布于 2024-08-10 05:52:13 字数 244 浏览 4 评论 0原文

在AS3项目中,我们可以在根类构造函数的第一行访问loaderInfo。这意味着整个 AS3 应用程序都可以利用 loaderInfo 对象。

然而,在 Flex 中,loaderInfo 对象似乎在发送 applicationComplete 事件之后才可用。这对我来说是有问题的,因为其他组件(需要利用 loaderInfo)在发送 applicationComplete 事件之前就已初始化。

我一定是错过了什么。谢谢大家的帮助! :)

In an AS3 project, we can access loaderInfo in the first line of the root class' constructor. This means that the entire AS3 application can take advantage of the loaderInfo object.

However, in Flex, it seems that the loaderInfo object is not available until after the applicationComplete event is sent. This is problematic for me, as other components (that need to leverage loaderInfo) are initialized long before the applicationComplete event is sent.

I must be missing something. Thanks for your help, everyone! :)

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

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

发布评论

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

评论(3

羅雙樹 2024-08-17 05:52:13

在Flex中使用Application.application.systemManager.stage.loaderInfo。

请参阅:http://www.actionscript.org/forums /showthread.php3?p=938460&posted=1#post938460

Use Application.application.systemManager.stage.loaderInfo in Flex.

See: http://www.actionscript.org/forums/showthread.php3?p=938460&posted=1#post938460

云仙小弟 2024-08-17 05:52:13

或者对于 Flex 4:

FlexGlobals.topLevelApplication.systemManager.stage.loaderInfo

Or for Flex 4:

FlexGlobals.topLevelApplication.systemManager.stage.loaderInfo

〃安静 2024-08-17 05:52:13

由于 applicationComplete 事件在应用程序布局添加到显示列表时发生,因此在此之前 stage 不可用。

Because the applicationComplete event occurs when the application layout is added to the displaylist, so until then stage is not available.

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