Hi,
I am using Flash MX and was wondering if anyone knew how I could use portions of the code from the Kirupa Photo Gallery tutorial (http://www.kirupa.com/developer/mx/photogallery.htm) for page transistions?
The specific script that I was looking at from the photo gallery tutorial is this:
MovieClip.prototype.fadeOut = function() {
if (this.photo._alpha>this.fadeSpeed) {
this.photo._alpha -= this.fadeSpeed;
} else {
this.loadPhoto();
}
};
I am designing a website that has 7 pages of content each designed on 7 seperate individual frames and the the static background/navigation is layered at the bottom (7 frames long). Any ideas how to implement this code to make transitions between those frames/pages? I would need the movie clip to transition to black when the navigation button is released and then gotoandPlay the next designated frame (which could have a manual movie clip animation fade in). The tricky part for me is the fade out and then navigating to the right page.
Thanks for your help.