通过 Loader 将参数传递给 swf
我有一个 swf (child.swf),我希望将其加载到另一个 (parent.swf) 中。 我希望通过我正在使用的加载器将参数传递给 child.swf 。 请注意,我并没有尝试传递parent.swf 已有的FlashVars,而是尝试使用自定义参数通过另一个swf 简单地加载一个swf。
I have a swf (child.swf) that I wish to load into another (parent.swf). I wish to pass a parameter to child.swf through the loader I am using. Note that I am not trying to pass FlashVars that parent.swf already has, but rather I am trying to simply load a swf through another swf with custom arguments.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在子 swf 中,编写一个函数(下面代码中的 init)来接收任何参数。 当 Loader 发出 Event.COMPLETE 信号时,从 Parent.swf 调用该函数,如下所示:
In the child swf, write a function (init in the code below) to receive any params. When the Loader signals Event.COMPLETE, call the function from parent.swf as follows: