Может как-то так, не?

Код AS3:
import flash.display.Bitmap;
import flash.geom.Point;
import flash.display.BitmapData;
class Police extends Bitmap
{
public function Police(x : Number, y : Number)
{
this.x = x;
this.y = y;
init()
}
public function init():void
{
var man:BitmapData = new Man(0, 0)
bitmapData = new BitmapData(man.width,man.height,true,0)
addBitmap(man)
addBitmap(new Jacket(0, 0))
addBitmap(new Pants(0, 0))
addBitmap(new Boots(0, 0))
addBitmap(new Cap(0, 0))
}
private function addBitmap(bd:BitmapData):void
{
bitmapData.copyPixels(bd, bd.rect, new Point(0, 0), bd, new Point(0, 0), true);
}
}