gotoAndStop NEXT label frame

Is there a way to move to next (not specified) label frame without indicating a specific name?

I have a portfolio movie clip with images, using the AS3 Tween Class.
I have a “next” button that hopefully will trigger the tween to NEXT label.

here is my code:
var myLabels:Array = [“print”, “printA”, “printB”, “printC”, “printD”, “printE”, “printF”];
next_btn.addEventListener(MouseEvent.CLICK, clickNextSection);

function clickNextSection (evtObj: MouseEvent){
trace (“The”+evtObj.target.name+“button was clicked!”)
gotoAndStop ([COLOR=“Red”]NEXT LABEL FRAME?[/COLOR]);

Thanks