ActionScript available scopes : Variable scope : Data Type Flash / Flex / ActionScript examples


Flash / Flex / ActionScript examples » Data Type » Variable scope »

 

ActionScript available scopes


 

package {
  // Code here is in the global scope

  public class SomeClass {
    // Code here is in the SomeClass scope

    public static function staticMeth (  ):void {
      // Code here is in the staticMeth scope
    }

    public function instanceMeth (  ):void {
      // Code here is in the instanceMeth scope

      function nestedFunc (  ):void {
        // Code here is in the nestedFunc scope
      }
    }
  }
}
// Code here is in the global scope

        



Leave a Comment / Note


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


Flash / Flex / ActionScript examples

 Navioo Data Type
» Variable scope