anybody else notice this canvas/easeljs peculiarity?
it's not possible to reparent a symbol created with drawing tools and added from the library or created on-stage (draw whatever > convert to symbol) unless it's removed (and that's not doable via removeChild) first from the stage. ie,
this.box.addChild(this.circle);
/* won't work with on-stage instances of this.box and this.circle without prior removal of this.circle*/

