01/02/2002, 17:31
|
| | Fecha de Ingreso: octubre-2001
Mensajes: 322
Antigüedad: 23 años, 1 mes Puntos: 1 | |
Re: Necesito ayuda para una formula hace un boton y metelo dentro del clip draggeable, al boton le metes esto:
on (press) {
soltar = 0;
startDrag ("");
}
on (release) {
soltar = 1;
stopDrag ();
}
Y al mc le metes:
onClipEvent (load) {
x = _x;
y = _y;
}
onClipEvent (enterFrame) {
if (soltar) {
_x+=(x-_x)/5
_y+=(y-_y)/5
}
}
Listo... ;) |