为什么Adobe Flash CS3仅导出没有来自其他SWC的符号的类

时间:2011-11-15 17:38:49

标签: flash flash-cs3 swc

我使用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);
        }

    }
}

NotificationWindow显示没有CloseButton。

我做错了什么?

0 个答案:

没有答案