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.
in As3, if you don't declare function as neither public or private in class what does it become then
Asked
Active
Viewed 118 times
1 Answers
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