Communicate between custom class
Hi,
i need to know what is the best way to communicate between custom classes.
For example:
how to get public var value in document class from another class in another package.
i know two ways but i need to know what if i am in the right side or not:
1- public static var Root:Main = this; and then call Main.Root.PublicVarName from another class.
2- make instance from the class ( var classInstance:ClassName = new ClassName() ) then to call function or var ... ( classInstance.PublicVarName ) but in this case i can't call the Main ( Document class ) as i got an error when try to create instance from Document class.
Thanks a lot ![]()