Código PHP:
var imagenActiva
function Transicion(mc1,mc2,tiempo) {
import mx.transitions.Tween;
import mx.transitions.easing.*;
var fxAlphaMC1 = new Tween(mc1, "_alpha", Strong.easeOut,mc1._alpha, 0, tiempo, true);
var fxAlphaMC2= new Tween(mc2, "_alpha", Strong.easeOut,0,100, tiempo, true);
}
boton1.onPress=function(){
Transicion(imagenActiva,foto1,3)
imagenActiva=foto1//que corresponde ha este boton
}
boton2.onPress=function(){
Transicion(imagenActiva,foto2,3)
imagenActiva=foto2//que corresponde ha este boton
}
boton3.onPress=function(){
Transicion(imagenActiva,foto3,3)
imagenActiva=foto3//que corresponde ha este boton
}
espero que esto te sirva XDXD sino dimelo