如何将参数传递给已加载的 swf 应用程序?
当我在 Flex 4 中使用 SWFLoader 加载 swf 应用程序时,如何将参数传递给该应用程序?
When I load an swf application using SWFLoader in Flex 4, how can I pass parameters to that application?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我从来没有尝试过这个,但看起来您可以将它们作为查询字符串直接附加到 SWFLoader 的源中:
并在加载的 SWF 中检索它们:
来源
I've never tried this, but it looks like you can append them directly to the SWFLoader's source as a query string:
And retrieve them in the loaded SWF with:
Source