DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Actionscript Component Getter/setter
// Inspectable getter and setter
[Inspectable(type=Number, defaultValue="10")]
public function set points(p:Number){
__points = p;
}
public function get points():Number{
return __points;
}





