我使用Flash CS3创建了Common.swc。它导出类NotificationWindow
,符号CloseButton
和适当的类。这些符号和类由NotificationWindow
使用。然后我创建了使用NotificationWindow
的Formula.swc。 Formula.swc通常导出类NotificationWindow
,CloseButton
但不导出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。
我做错了什么?