拡張する2つのクラスがあるとしますEvent:
public class CustomEventOne extends Event
{
public static const EVENT_TYPE_ONE:String = "click";
//... rest of custom event
と
public class CustomEventTwo extends Event
{
public static const EVENT_TYPE_TWO:String = "click";
//... rest of custom event
両方が同じ文字列を使用してイベント タイプを宣言しても問題あり"click"ませんか?
それとも、イベント タイプ識別子はアプリケーション全体で一意である必要がありますか?