The combo box is a drop down list. In this example, there is a vehicle on each of 3 frames.
The code is shown below:
stop();
cboChoice.addEventListener(Event.CHANGE, changeFrame);
function changeFrame(e:Event):void
{
lblChoice.text=""+cboChoice.selectedItem.label;
gotoAndStop(cboChoice.selectedItem.data);
}
Download the movie