19/09/2008, 13:38
|
| | | Fecha de Ingreso: noviembre-2007 Ubicación: yecla murcia
Mensajes: 1.346
Antigüedad: 17 años, 1 mes Puntos: 51 | |
Respuesta: Efecto chikle con el mouse hola
prueva con este codigo es lo mas rapido que pude acer ya que me tengo qie ir de urgencia XDXD
seguro que lo podras mejorar
boton_posx = boton._x;
boton_posy = boton._y;
function seguir() {
this.onEnterFrame = function() {
boton._x = _xmouse;
boton._y = _ymouse;
if (boton._x>boton_posx+50 ||boton._x <boton_posx-50) {
boton._x = boton_posx; }
if (boton._y>boton_posy+50 ||boton._y <boton_posy-50) {
boton._y = boton_posy;
}
};
}
boton.onRollOver = seguir();
__________________ Sobran las ideas cuando faltan ganas de trabajar en ellas Lynxcraft |