Boton hacia arriba:
on (press, release, rollOver) {
if (texto._y >= +70) {
texto._y = texto._y+10;
} else {
texto._y = texto._y;
}
}
Boton hacia abajo:
on (press, release, rollOver) {
if (texto._y >= -380) {
texto._y = texto._y-10;
} else {
texto._y = texto._y;
}
}
estos son los 2 botones, pero no se que anda mal..
Algun master que me diga que sucede...
Gracias
