Using Enumerators instead of Constants.

Call me lazy, but i have almost always gone with using static constants where other developers scream enum enum… ENUM!!! public static const TYPE_ONE :String = "typeOne"; public static const TYPE_TWO :String = "typeTwo";   public var type   :String = TYPE_ONE; Ok, so i hear ya, you can chill now, from now one its: [...]