I have site set-up with a news section. I have links for each month and pages for each month of news. The “News” page is on the main timeline and the addtional pages are MC in my library. Here is the code for the first page which works great.
==>I’ve including the main timeline page transition.
on(rollOver) {
gotoAndPlay (“over”);
}
on(releaseOutside, rollOut) {
gotoAndPlay (“out”);
}
on(release) {
if (_root.G<>1) {
_root.link=3
_root.play();
}
root.page01.sub.txt.gotoAndStop(3);
}
Now when I click on May 2006 the page comes in great with the page transitions. When I change the page to page02, which is April 2006, it doesn’t come up, instead May 2006 comes up again. Cannot figure out what I am doing wrong. Please help!