Package-Level Functions : Function : Function Flash / Flex / ActionScript examples


Flash / Flex / ActionScript examples » Function » Function »

 

Package-Level Functions


 

package packageName {
  public function identifier (  ) {
  }
}

To make the function accessible only in that package, we precede the definition with the access control modifier internal:

package packageName {
  internal function identifier (  ) {
  }
}

package utilities {
  import flash.system.*;

  public function isMac (  ) {
    return Capabilities.os == "MacOS";
  }
}

        



Leave a Comment / Note


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


Flash / Flex / ActionScript examples

 Navioo Function
» Function