6
static public const CONST_1 :String = "CONST_1";
static public const CONST_A :String = "CONST_A";
public var constantsArr :Array;
は次のように手動で追加することなく、クラスの定数値の配列を取得することが可能です:AS3 - クラスの定数の配列を取得するにはどうすればよいですか?
constantsArr = [ CONST_1, CONST_A ];
可能重複します。http:// stackoverflow.com/questions/3871576/how-can-i-list-all-the-const-properties-defined-in-a-class – loxxy