Ho questa galleria fotografica:

function startImageViewer(rect_mc) {
image_mc._visible=false;
next_btn._visible=true;
back_btn._visible=true;
container_0_mc._visible=false;
//rootNode = models_xml.firstChild.firstChild.firstChild;
rootNode=rect_mc.pictures;
//trace(rootNode);
totalImages = rootNode.childNodes.length;
//trace (totalImages);
firstImageNode = rootNode.firstChild;
//trace (firstImageNode);
currentImageNode = firstImageNode;
//trace (currentImageNode);
currentIndex = 1;
updateImage(firstImageNode);
}


function updateImage(newImageNode) {
imagePath = 'WebModels/WebPictures/M_'+newImageNode.childNodes;
//trace (imagePath);
targetClip.loadMovie(imagePath);
imageCount = "Viewing image " + currentIndex + " of " + totalImages;

}



next_btn.onRelease = function() {
nextImageNode = currentImageNode.nextSibling;
//trace (nextImageNode);
if (nextImageNode == null) {
break;
} else {
currentIndex++;
updateImage(nextImageNode);
currentImageNode = nextImageNode;
}
};


back_btn.onRelease = function() {
previousImageNode = currentImageNode.previousSibling;
this.Alpha(false);
if (previousImageNode == null) {
break;
} else {
currentIndex--;
currentImageNode = previousImageNode;
updateImage(previousImageNode);
}
};

Mi piacerebbe che le immagini compaiano con effetto alpha da 0 a 100 , ho provato a guardare qui nel forum per trovare una soluzione, ma non sono riuscito a realizzare l'effetto desiderato...forse anche perchè sono proprio una capra con l'action script di flash.
C'è qualcuno che riuscirebbe a darmi una mano a capire come risolvere questo problema?