How to access parent non static variable,
parent{
public var myArry:Array<Object> = [];
}
Child{
Object = new Object();
parent.addChild(Object);
//I WANT TO ADD THE OBJECT ON THE PARENT ARRAY LIST
parent.maArry.push(Object); <-- this approach only works if i declare it as static variable.But static is heavy,
is this posible? trying to work on HTML5 target. I dont want to use static as
much as posible.. noob here. Thanks
}