You can control movie clip symbols with actionscript. So if you had a movie clip symbol with a name of "myClip" and you wanted it go to frame 5, your button would say:

Code:
on(release){
  myClip.gotoAndPlay(5);
}