flashvars 帮助,动态加载 XML 文件

发布于 2024-09-17 17:54:48 字数 306 浏览 4 评论 0原文

嘿,我有一个加载静态 XML 文件的 Flash 影片,该脚本看起来像

list = "list.xml";
var listXml:XML = new XML();
listXml.ignoreWhite = true;
listXml.load(list);

我希望能够动态更改此“列表”变量,也许使用 flashVars。

像这样

 var flashvars = {
    xmlpath: "list.xml"
};

知道如何去做吗?

Hay, i have a flash movie which loads a static XML file, the script for this looks like

list = "list.xml";
var listXml:XML = new XML();
listXml.ignoreWhite = true;
listXml.load(list);

I want to be able to change this 'list' variable dynamically, perhaps using flashVars.

like this

 var flashvars = {
    xmlpath: "list.xml"
};

Any idea's how to go about doing this?

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

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

发布评论

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

评论(2

公布 2024-09-24 17:54:48

http://www.actionscript.org/forums/showthread.php3?t= 185370

AS3 将 FlashVars 传递给加载的 swf

如果您有一些代码已经,请分享,以便我们为您提供建议

http://www.actionscript.org/forums/showthread.php3?t=185370

AS3 Pass FlashVars to loaded swf

if you have some code already, please share, so we could advice you

救赎№ 2024-09-24 17:54:48

flashvars 属性可在 LoaderInfo 对象的parameters 属性中访问。

In your main class:

var info:Object = this.loader.contentLoaderInfo.parameters;
var xmlpath:String = info.xmlpath;

检查这篇文章:
http://blogs.adobe.com/pdehaan/2006/07/using_flashvars_with_actionscr。 html

The flashvars properties are accessible in the parameters property of the LoaderInfo object.

In your main class:

var info:Object = this.loader.contentLoaderInfo.parameters;
var xmlpath:String = info.xmlpath;

Check this article:
http://blogs.adobe.com/pdehaan/2006/07/using_flashvars_with_actionscr.html

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