22/03/2009, 14:01
|
| | | Fecha de Ingreso: mayo-2007 Ubicación: { Dash Berlin }
Mensajes: 1.879
Antigüedad: 17 años, 7 meses Puntos: 67 | |
Respuesta: Ayuda POr favor con codigo as2 sobre un boton con dos ACCIONES Ponlo así:
Código:
var i:Number = 0;
var resto:Number;
btn1.onRelease = function() {
resto = i%2;
i++;
if (resto == 0) {
trace("play");
} else {
trace("stop");
}
};
|