Sorry, I kinda missread the question. First, drag a comboBox on stage if you havent already. Click the parameters tab in the properties bar, and click labes, and click the plus, and type in "one", and repeat for every other number you want. then, click ok. Give it an istance name "box". In the main timeline, use this code:
onEnterFrame=function(){
if (_root.box.getValue()=="one"){
_root.gotoAndStop(1);
}
if (_root.box.getValue()=="two"){
_root.gotoAndStop(2);
}
if (_root.box.getValue()=="three"){
_root.gotoAndStop(3);
}
}
and do that for every number you want. Its kinda annoying if you have a long list, but I have, in a font selector and in my newgrounds gadget, had hundreds of lines of code just full of if statements. Theres probably an quicker way, but this is deffinately the easiest. It also seems as I am the only one that uses the getValue() function, but I get allong well with it.