Adding Static Properties to a Class : Properties : Class Flash / Flex / ActionScript examples


Flash / Flex / ActionScript examples » Class » Properties »

 

Adding Static Properties to a Class


 


package{
  import flash.display.Sprite;
  
  public class Main extends Sprite{
    public function Main(){
       trace(Car.EXTERIOR_COLORS);

    }
  }
}
class Car{

   static public var EXTERIOR_COLORS:Array = ["red""silver""gold""white""blue"];
}

        



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


Flash / Flex / ActionScript examples

 Navioo Class
» Properties