Jump to a place in the timeline

skip_btn.addEventListener(MouseEvent.MOUSE_DOWN, goto);

function goto(event:MouseEvent):void{
gotoAndStop(300);
}


<