You have your MC we will call it "thumb" you want to click on "thumb" and have the MC we will call "photo" go to a new frame? Is that right?
Simple enough.. add this to the actions panel of "thumb"
Code:
on(release){
_root.photo.gotoAndStop(2);
}
where the "2" is which ever frame you want it to go to.
If you want to use the same button to progress through the frames (i.e. click "thumb" to make "photo" go to frame 2, them frame 3, then frame4...) You need to set it up to tell it to go to the next frame. Still pretty simple:
Code:
on(press){
_root.photo.nextFrame();
}
and you can have on another button:
Code:
on(release){
_root.photo.prevFrame();
}
Either way works, depending on your needs.
Bookmarks