Ramonites tenes un par de errores de sintaxis, el código correcto sería así:
Código:
onClipEvent (enterFrame) {
if (clic == true && mc1 == true) {
destinoX = _root.mc1._x;
diferenciax = destinoX-_x;
this._x += diferenciax/3;
}
if (clic == true && mc2 == true) {
destinoX = _root.mc2._x;
diferenciax = destinoX-_x;
this._x += diferenciax/3;
}
}