startDrag("/thing", true);
}
on (release) {
d = 200;
x = 665;
y = 400;
xdistance = getProperty("../thing", _x) - x;
ydistance = getProperty("../thing", _y) - y;
trace("Xdistance = " add xdistance + newline add "Ydistance = " add ydistance);
if ((Number(Xdistance) > Number((-1 * d)) add Number(Xdistance) < Number(d)) add (Number(Ydistance) > Number((-1 * d)) and Number(Ydistance) < Number(d))) {
stopDrag();
setProperty("../thing", _x, x);
setProperty("../thing", _y, y);
} else {
stopDrag();
}
}
luego de esto cuando lo publico me arroja estos errores.
Símbolo=thing, layer=Button, frame=1, Línea 10 Se espera ')' o ','
Símbolo=thing, layer=Button, frame=1, Línea 11 Se espera ')'
ayuda porfa es urgente.