• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Help remind me

Drakkon

Diamond Member
Whats the generally accepted way for a class to access properties of another class:

Say if i want accessSomething to process getSomething I would have to have a class var in Class2 that points to Class1 right?
 
What you have started out with is correct; syntax for the return statemnt of c1.getSomething may be flawed

c1.getSomething();

Also, make sure that what ever is accessed is declared public, based on the design that you showed.
 
Back
Top