Documentation and Books

Recent site activity

What are the possible access modifiers of ActionScript class properties?

The following access modifiers are available:

  • internal (default): Visible to references inside the same package.
  • private: Visible to references within the same class.
  • protected: Visible to references in the same / derived class.
  • public: Visible to references everywhere.
  • static: Specifies a class, rather then instance, property.