Im having issues with this part of the code, it's supposed to add the pieces into an array, but I keep getting this error. This is the part of the code:
function addPiece(xCoord:Number,yCoord:Number,id:Number){
classLoader = getDefinitionByName("piece"+id) as Class;
var tmp:Piece = new classLoader();
tmp.x = xOffSet+(xCoord * 128);
tmp.y = yOffSet+(yCoord * 128);
tmp.id = id;
//trace("===>"+tmp.x + ","+tmp.y)
pieces.push(tmp);
this.addChild(tmp);
}
Thank you very much for your help.