a ver si esto te da la bandera de inicio

las 4 shapes son cuadrados transparentes donde se "atoraran" las piezas y van uno junto al otro
las otras piezas son del mismo tamaño (exacto) de las shapes
Código ActionScript :
tan1.onPress = tan2.onPress=tan3.onPress=tan4.onPress=tanPress;
function tanPress() {
if (!drag) {
startDrag(this, true);
drag = 1;
}
tanRelease();
}
function tanRelease() {
onEnterFrame = function () {
if ((_xmouse == shape1._x && _ymouse == shape1._y) || (_xmouse == shape2._x && _ymouse == shape2._y) || (_xmouse == shape3._x && _ymouse == shape3._y) || (_xmouse == shape4._x && _ymouse == shape4._y)) {
stopDrag();
delete(this.onEnterFrame);
drag = 0;
}
};
}