Gracias por la ayuda.
Código:
function CargarPrimeraImagen() { contenedor._alpha = 0; posarray = 0; contenedor.loadMovie(imagen[posarray], 1); contenedor._height= _root.alto; //redimensiono contenedor._width = _root.ancho; //redimensiono Carrusel(); } function SiguienteImagen() { if (posarray<(total-1)) { contenedor._alpha = 0; posarray++; contenedor.loadMovie(imagen[posarray]); contenedor._height= _root.alto; //redimensiono contenedor._width = _root.ancho; //redimensiono Carrusel(); } }