如何将变量从 .swf 文件传递​​到 .as 文件?

发布于 2024-12-13 05:10:00 字数 449 浏览 0 评论 0原文

我在 .as 中有一个 main,我在 .as 中加载 .swf。工作正常,现在我想要从 .swf 获取变量并将其传递到 .as。我该怎么做?请帮助! 我的 .swf 文件编码

function formatMessage(chatData:Object)
{
var number:uint = chatData.user;
trace(chatData.user);
}
private function addText()
    {
_loader = new Loader();
_loader.x=10;
_loader.y=200;
_loader.load(new URLRequest("receive.swf"));//Here i Can Load the Swf.Here how Can i acces  the Variable of number ?
 addChild(_loader);
    }

I have a main in .as and I load .swf in my .as.It's Working fine,Now I want the take variable From .swf and Pass it Into .as. How can i do this? pls. help!
My .swf file coding

function formatMessage(chatData:Object)
{
var number:uint = chatData.user;
trace(chatData.user);
}
private function addText()
    {
_loader = new Loader();
_loader.x=10;
_loader.y=200;
_loader.load(new URLRequest("receive.swf"));//Here i Can Load the Swf.Here how Can i acces  the Variable of number ?
 addChild(_loader);
    }

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

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

发布评论

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

评论(2

淤浪 2024-12-20 05:10:00

首先要记住的是,这不适用于跨 ActionScript VM 版本。这意味着只有 AVM2 和 AVM2 可以进行通信(AVM1 之间也可以,但需要更多的创意)。

将完成事件侦听器添加到名为 onLoad_loader.contentLoaderInfo 属性中

_loader.x=10;
_loader.y=200;
_loader.contentLoaderInfo.addEventListener(Event.COMPLETE, onLoad);

现在使用 onLoad 函数需要提取加载的内容并进行一些转换。

function onLoad(evt:Event):void {
    var target:DisplayObject = LoaderInfo(evt.target).content as DisplayObject; // cast as DisplayObject
    trace("readMe = ", target["your_variable"]); // trace output "your_variable"
}

有更简洁的形式可以完成此操作,但这将允许您从嵌套的 SWF 中提取值。

First thing to keep in mind is that this will not work across ActionScript VM versions. Meaning only AVM2 and AVM2 can make communication (it is possible between AVM1, but takes more ingenuity).

Add a completion event listener to the _loader.contentLoaderInfo property called onLoad

_loader.x=10;
_loader.y=200;
_loader.contentLoaderInfo.addEventListener(Event.COMPLETE, onLoad);

Now with the onLoad function will need to extract the loaded content and a little casting.

function onLoad(evt:Event):void {
    var target:DisplayObject = LoaderInfo(evt.target).content as DisplayObject; // cast as DisplayObject
    trace("readMe = ", target["your_variable"]); // trace output "your_variable"
}

There are cleaner forms of getting this done, but this will allow you extract the value from the nested SWF.

爱你是孤单的心事 2024-12-20 05:10:00

DisplayObjectContainer(_loader.content).getChildByName("someName");

someName 变量必须是公共的,在主时间线或主文件中声明。

DisplayObjectContainer(_loader.content).getChildByName("someName");

someName variable must be public, declared in main time line, or main file.

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