How to navigate from btn of mc_B to FRAME of mc_A using frame labels?
I’m using Flash MX (the pre-02004 version) to design a photo portfolio that will be distributed on CDs to potential clients.
It’s broken up into subject galleries, each of which is its own movie clip. The pages of those gallery movie clips are all separate movie clips, too, regardless of whether they contain single images or layouts of images. Frame labels with stop codes separate each gallery_mc.
Within each gallery, previous and next buttons allow page-to-page navigation. From the last page of gallery_A_mc (e.g.), I can to go to the first page of gallery_B_mc by using the following ActionScript:
on (release) {
this._parent.gotoAndStop("gallery_B_FrameLabel");
}
The problem I’m having, though, is when I’m on the first page of gallery_B_mc, and I want to make the previous button go to the last page of gallery_A_mc.
on (release) {
this._parent.gotoAndStop("gallery_A_FrameLabel");
}
// Doesn’t work, obviously, because it launches the first page of gallery_A_mc.
on (release) {
this._parent.gotoAndStop("gallery_B_FrameLabel.gallery_B_mc", 5);
}
// I’d think that this should make it go to frame 5 of gallery_B_mc, which is on the gallery_B_FrameLabel, but it doesn’t make it go anywhere.
on (release) {
this._parent.gotoAndStop("gallery_B_mc”, 5);
}
// Also doesn’t make it go anywhere.
Can anyone offer me a suggestion? I’ve been reading books and doing tutorials, and have learned a lot, but I can’t seem to resolve this linkage issue.
Thanks in advance for any assistance you’re able to provide.
_dwh_