Hace tiempo hice un script que te ahorra mucho trabajo para hacer esto y aparte le añade una trancisión a cada imagen, lo único que debes hacer es importar todas tus imágenes, pasarlas a movieclip y en vinculación nombrarlas imagen1, imagen2, imagen3, etc..., en el script lo único que debes de cambiar es la variable numeroDeFotos a el numero de fotos que tienes y las coordenadas de las fotos que es donde quieres que aparezcan, también debes poner 2 movieclips con instancias "adelante" y otra que se llame "atras" para que sean tus botones.
ojalá sea de gran ayuda este script, abajo te dejo el .fla con el ejemplo.
Descarga el ejemplo aquí: 
http://www.geocities.com/jahepi/fotos.zip 
Script: 
 Código PHP:
    _root.atras.enabled = false;
//Escribe aqui el total de fotos
numeroDeFotos = 3;
//Coordenadas de las imágenes
x = 320;
y = 270;
//////
_root.adelante.onPress = function() {
    numero += 1;
    pasado = numero-1;
    trace(numero);
    _root.attachMovie("imagen"+numero, "imagen"+numero, numero, {_x:x, _y:y, _alpha:0});
    trace("nivel" add "-" add _root["imagen"+numero].getDepth());
    if (numero == 1) {
        _root.atras.enabled = false;
    } else {
        _root.atras.enabled = true;
    }
    if (numero == numeroDeFotos) {
        _root.adelante.enabled = false;
    } else {
        _root.adelante.enabled = true;
    }
    _root["imagen"+numero].onEnterFrame = function() {
        this._alpha += 20;
        if (this._alpha>=100) {
            this.onEnterFrame = null;
        }
    };
    _root["imagen"+pasado].onEnterFrame = function() {
        this._alpha -= 20;
        if (this._alpha<=0) {
            _root["imagen"+pasado].unloadMovie();
            this.onEnterFrame = null;
        }
    };
};
_root.atras.onPress = function() {
    numero -= 1;
    pasada = numero+1;
    trace(numero);
    _root.attachMovie("imagen"+numero, "imagen"+numero, numero, {_x:x, _y:y, _alpha:0});
    trace("nivel" add "-" add _root["imagen"+numero].getDepth());
    if (numero == 1) {
        _root.atras.enabled = false;
    } else {
        _root.atras.enabled = true;
    }
    if (numero == numeroDeFotos) {
        _root.adelante.enabled = false;
    } else {
        _root.adelante.enabled = true;
    }
    _root["imagen"+numero].onEnterFrame = function() {
        this._alpha += 20;
        if (this._alpha>=100) {
            this.onEnterFrame = null;
        }
    };
    _root["imagen"+pasada].onEnterFrame = function() {
        this._alpha -= 20;
        if (this._alpha<=0) {
            _root["imagen"+pasada].unloadMovie();
            this.onEnterFrame = null;
        }
    };
};