为什么 Adob​​e Flash CS3 仅从其他 SWC 导出没有符号的类

发布于 2024-12-16 01:31:57 字数 934 浏览 0 评论 0原文

我使用 Flash CS3 创建了 Common.swc。它导出类 NotificationWindow、符号 CloseButton 和相应的类。这些符号和类由 NotificationWindow 使用。然后我创建了使用 NotificationWindow 的 Formula.swc。 Formula.swc 通常导出类 NotificationWindowCloseButton,但不导出 CloseButton 符号。

我还尝试使用 Test.as 创建非常简单的 Test.fla:

package {
    import flash.display.Sprite;
    import flash.events.Event;
    import inobr.eft.common.ui.*;

    public class Test extends Sprite {
        public function Test() {
            if (stage) init();
            else addEventListener(Event.ADDED_TO_STAGE, init);
        }

        private function init(e:Event = null):void 
        {
            removeEventListener(Event.ADDED_TO_STAGE, init);

            NotificationWindow.show(stage, "Tets!", "Test test", true);
        }

    }
}

在没有 CloseButton 的情况下显示通知窗口。

我做错了什么?

I've created Common.swc using Flash CS3. It exports class NotificationWindow, symbol CloseButton and appropriate class. These symbol and class are used by NotificationWindow. Then I created Formula.swc which uses NotificationWindow. Formula.swc normally exports classes NotificationWindow, CloseButton but not CloseButton symbol.

Also I tried to create very simple Test.fla with Test.as:

package {
    import flash.display.Sprite;
    import flash.events.Event;
    import inobr.eft.common.ui.*;

    public class Test extends Sprite {
        public function Test() {
            if (stage) init();
            else addEventListener(Event.ADDED_TO_STAGE, init);
        }

        private function init(e:Event = null):void 
        {
            removeEventListener(Event.ADDED_TO_STAGE, init);

            NotificationWindow.show(stage, "Tets!", "Test test", true);
        }

    }
}

NotificationWindow displayed without CloseButton.

What I do wrong?

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文