When I test my movie, I'm getting this error: TypeError: Error #1010: A term is undefined and has no properties. I think it's caused by child objects but I couldn't fix it. My code:
var wPawn1:Object = new Object();
wPawn1.mc = new WhitePawn();
addChild(wPawn1.mc);
// Black inPeace variables
wPawn1.inPeace = "a2";
var pieces:Object = new Object();
pieces.a2.man = MovieClip(wPawn1.mc);
pieces.a2.x = 70;
pieces.a2.y = 491;
wPawn1.mc.x = pieces.a2.x;
wPawn1.mc.y = pieces.a2.y;