Some more on this, in DynObject.prototype.addChild there is a line:
if(this.created) c.create();
however the first line of DynLayer basically says if(this.created)return,
So in addition to my suggestion below should the line in
DynObject.prototype.addChild be changed to:
if(!this.created) c.cr
Trying to make myself useful, so I'm having a go at migrating LoadPanel to
DynAPIX. Out of the box it doesn't work, I think I've tracked down the
reason why. LoadPanel has a method called reload, which basically removes
itself from its parent then adds itself again (I'm not sure why, I didn't
writ