如何在 Flex 3 中纯粹通过 Actionscript 使用 SWFLoader 并动态加载内容?

发布于 2024-07-25 11:47:04 字数 160 浏览 4 评论 0原文

我正在做一个 Flex 3 项目,其中我必须根据所需文件的可用性来加载 SWF。 加载的 SWF 文件将被放置在容器(面板)中的特定位置(即坐标)中。 我不想在 MXML 中执行此操作,因为如果文件不可用,SWFLoader 容器会显示十字标记框。

那么朋友们有什么解决办法吗?

I'm doing a Flex 3 project wherein I've to load SWF based on the availability of required file. And the loaded SWF file will be placed in a container (a Panel) at a particular location i.e. coordinates. This I don't want to do in MXML as the SWFLoader container shows a cross marked box if the file is unavailable.

So friends is there any solution?

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

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

发布评论

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

评论(1

<逆流佳人身旁 2024-08-01 11:47:04
  • 使用文件的 url 创建一个新的 URLRequest 对象。
  • 创建一个新的 Loader 对象。
  • 调用 Loader 对象的 load() 方法,并将 URLRequest 实例作为参数传递。
  • 在显示对象容器(例如 Flash 文档的主时间轴)上调用 addChild() 方法,将 Loader 实例添加到显示列表中。

来源:加载外部 SWF 文件

  • Create a new URLRequest object with the url of the file.
  • Create a new Loader object.
  • Call the Loader object's load() method, passing the URLRequest instance as a parameter.
  • Call the addChild() method on a display object container (such as the main timeline of a Flash document) to add the Loader instance to the display list.

Source: Loading an external SWF file.

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