Extending class, not seeing updated variables

Hi,

In classA I have an object constantly moving around (Event.ENTER_FRAME).
classB extends classA.

From classB, I am trying to trace the object coordinates(or even the object itself) from classA while it moves. The coordinates are constantly returning 0.

I know I am extending correctly, cause I can trace classA variables. Any variable change though, and it will not allow classB to see it. I even tried to “super.method()” and it still doesn’t see the classA object moving around.

Any ideas? :puzzle: ty