在 ActionScript 中,为什么从应用程序的不同部分访问时我的静态类成员变量不相同?

发布于 2024-08-27 20:36:16 字数 231 浏览 3 评论 0原文

我有一个定义了静态成员变量的动作脚本类。

public class A
{
     public static var x:int;
}

当我尝试从代码中的不同部分访问它时,我在每个位置都没有得到相同的值。

A.x 

我正在加载的不同模块中访问变量,因此它们都位于自己单独的 .swf 文件中。这能是为什么呢?

I have an actionscript class with a static member variable defined.

public class A
{
     public static var x:int;
}

When I try to access it from different parts in my code I don't get the same value in each spot.

A.x 

I am accessing the variable in different modules that are loaded, so they are all in their own separate .swf file. Could this by why?

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

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

发布评论

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

评论(1

檐上三寸雪 2024-09-03 20:36:16

似乎是应用程序域问题。主 swf 和模块似乎正在访问它们自己的 A 类副本。您可能应该更改加载模块的方式。

请查看:

http://livedocs.adobe。 com/flash/9.0/ActionScriptLangRefV3/flash/system/LoaderContext.html#applicationDomain
http://livedocs.adobe.com/flash/9.0/ ActionScriptLangRefV3/flash/system/ApplicationDomain.html

Seems like an application domain problem. The main swf and the modules seem to be accessing their own copies of the A class. You should probably change the way you load your modules.

Check this out:

http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/system/LoaderContext.html#applicationDomain
http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/system/ApplicationDomain.html

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