Seria algo mas o menos asi:
Código PHP:
//Valores a donde Regresara
//Posicion Original
xini = a_mc._x;
yini = a_mc._y;
a_mc.onPress = function() {
this.startDrag();
};
a_mc.onRelease = function() {
stopDrag();
//Si esta Fuera del Rango que regrese su pos original
if (this._x<100 || this._x>200 || this._y<100 || this._y>200) {
this._x = xini;
this._y = yini;
}
};
El rango es un cuadro de 100 x 100...
Si quieres que se vea mejor haz regresar el objeto lentamente...
Saludos!!