0

If in inside package>class... i declare and define a function that is without starting public/private part. Where would it be accessible and how is it different from private functions.

Muhammad Umer
  • 17,263
  • 19
  • 97
  • 168

1 Answers1

3

The default visibility level is internal which means the members are accessible from within the same package. This is explained in the Class property attributes section in the ActionScript 3 manual. Class definitions itself without a visibility specification are also internal.

poke
  • 369,085
  • 72
  • 557
  • 602