01/07/2008, 18:05
|
| Moderador | | Fecha de Ingreso: julio-2003 Ubicación: Lima - Perú
Mensajes: 16.726
Antigüedad: 21 años, 4 meses Puntos: 406 | |
Respuesta: Ayuda!! juego con drag en action script! Hola flapina:
Utiliza éste código:
hada.onPress = function() {
this.startDrag();
};
if (this.hitTest(pared)) {
hada._alpha = 50;
} else {
hada._alpha = 100;
}
hada.onRelease = function(){
this.stopDrag();
}
Espero haberte sido de ayuda. |