In the Tut: Photo Gallery using XML and Flash, the outgoing image is faded to 0 BEFORE the imcoming image is faded to 100. Is it possible to get the imcoming image to fade in WHILE the outgoing image is be faded out?
Here is some of the tut’s code:
function nextImage() {
[color=blue]if (p<(total-1)) {
p++;
if (loaded == filesize) {
picture._alpha = 0;
picture.loadMovie(image[p], 1);
desc_txt.text = description[p];
picture_num();
}
}
}[/color]