show/hide this revision's text 2 added clarity - only applies in DisplayLists

Maybe I'm missing

If these objects are in the pointDisplayList, but if then you have some more options. If I have a ParentClass and a ChildClass, in the child class, you seem to be able to access the parent if you cast the request as the ParentClass. e.g.

ParentClass(parent).parentFunction();

I know for sure it works if the ParentClass is the Document Class. As the Document Class is always the first item in the display list, this works:

ParentClass(stage.getChildAt(0)).parentFunction();

In my case, they were both members of the same package, so I did not even need to import anything. I haven't tested it in all circumstances, but it worked when I needed it to.

Of course 'parent' and 'getChild...' only work if these objects are in the DisplayList, but that's been good enough for me.

show/hide this revision's text 1

Maybe I'm missing the point, but if I have a ParentClass and a ChildClass, in the child class, you seem to be able to access the parent if you cast the request as the ParentClass. e.g.

ParentClass(parent).parentFunction();

I know for sure it works if the ParentClass is the Document Class. As the Document Class is always the first item in the display list, this works:

ParentClass(stage.getChildAt(0)).parentFunction();

In my case, they were both members of the same package, so I did not need to import anything. I haven't tested it in all circumstances, but it worked when I needed it to.