27/05/2009, 20:07
|
| | | Fecha de Ingreso: mayo-2007 Ubicación: { Dash Berlin }
Mensajes: 1.879
Antigüedad: 17 años, 7 meses Puntos: 67 | |
Respuesta: como parar un desplazamiento en _x Asi podria ser:
Código:
var velocidad:Number = 0;
this.onEnterFrame = function() {
mueve._x += velocidad;
};
//controles
btn_back.onRelease = function() {
velocidad = -1;
};
btn_next.onRelease = function() {
velocidad = 1;
};
btn_stop.onRelease = function() {
velocidad = 0;
};
__________________ { Flash } |