Flash - 无法访问另一个 SWF 中的类

发布于 2024-10-19 04:11:04 字数 1030 浏览 1 评论 0原文

我正在尝试加载本地 SWF 文件并使用该 SWF 中的类(它只是代码 SWF,库中没有任何内容)。

下面是加载库的代码:

var AD:ApplicationDomain = ApplicationDomain.currentDomain;
var context:LoaderContext = new LoaderContext(false, AD);

SA_gamecore_loader = new Loader();
SA_gamecore_loader.contentLoaderInfo.addEventListener(Event.COMPLETE, onGameCoreLibraryDataComplete);
SA_gamecore_loader.load(new URLRequest("GameCore.swf"), context);

这是尝试从 GameCore.swf 实例化类的代码:

var test:Class = GetClassFromDefinition("MenuArt") as Class;
var testInstance:Object = new test();

public function GetClassFromDefinition(theStr:String):Object
{
    var theClass:Object;
    try
    {
        theClass = GameCoreLibraryData.applicationDomain.getDefinition(theStr);
    }
    catch(e:ReferenceError)
    {
        trace(e);
        return null;
    }
    return theClass;
}

这是跟踪的消息:

ReferenceError: Error #1065: Variable MenuArt 未定义。

GameCore.swf 与父 swf 位于同一位置。我正在使用 Flash Develop,如果有帮助的话。有人能指出我做错了什么吗?

I'm trying to load a local SWF file and use the classes in that SWF (its a code only SWF, nothing in library).

Here's the code that loads the library:

var AD:ApplicationDomain = ApplicationDomain.currentDomain;
var context:LoaderContext = new LoaderContext(false, AD);

SA_gamecore_loader = new Loader();
SA_gamecore_loader.contentLoaderInfo.addEventListener(Event.COMPLETE, onGameCoreLibraryDataComplete);
SA_gamecore_loader.load(new URLRequest("GameCore.swf"), context);

Here's the code that tries to instantiate a class from GameCore.swf:

var test:Class = GetClassFromDefinition("MenuArt") as Class;
var testInstance:Object = new test();

public function GetClassFromDefinition(theStr:String):Object
{
    var theClass:Object;
    try
    {
        theClass = GameCoreLibraryData.applicationDomain.getDefinition(theStr);
    }
    catch(e:ReferenceError)
    {
        trace(e);
        return null;
    }
    return theClass;
}

And this is the message that's traced:

ReferenceError: Error #1065: Variable MenuArt is not defined.

The GameCore.swf is in the same location as the parent swf. I'm using Flash Develop if that helps. Anyone able to point out what I'm doing wrong?

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

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

发布评论

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

评论(1

等风也等你 2024-10-26 04:11:04

终于找到问题所在了。我必须在 getDefinition 调用中包含包名称。所以就我而言:

var test:Class = GetClassFromDefinition("test.MenuArt") as Class;

Finally figured out the problem. I had to include the package name in the getDefinition call. So in my case:

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