on (release) {
if (lit._y>30 & lit._y<142) {
lit._y += 20;
}
if (lit._y == 149.9) {
nextFrame();
}
}


i basically have a menu with a "lit" mc that moves up and down to show where u are in selection. this is the actionscript that goes on the down button. when it reachs a certain point (149.9) i want it to go to the next frame when pressed again, it doesnt do this.