Estoy creando una pagina que contiene unos loaders con imagenes en miniatura que al pinchar en estas, carga un swf externo en otro loader, ocurre que me gustaria añadir un scroll a las imagenes en plan carrusell estatico , como si fuese una ventana con texto para desplazar pero con imagnes, y la verdad he probado cosas que he visto por ahi y no consigo hacerlo, podeis ayudarme???????? gracias de antemano os dejo el codigo para que lo podais ojear, lo que quiero esque se visualicen las 3 primeras y el resto aparezcan mediante un scroll de barra:
comp1_btn.contentPath = "thumb1.jpg";
comp2_btn.contentPath = "thumb2.jpg";
comp3_btn.contentPath = "thumb3.jpg";
comp4_btn.contentPath = "thumb2.jpg";
comp5_btn.contentPath = "thumb3.jpg";
function portfolioLoader (image, textFile) {
main_mc.contentPath = image;
myData = new LoadVars();
myData.onLoad = function() {
myTitle_txt.text = this.theTitle;
myDescrip_txt.text = this.theDescrip;
};
myData.load(textFile);
}
comp1_btn.onRelease = function (){
portfolioLoader("antesrevista.swf","text1.txt");
}
comp2_btn.onRelease = function (){
portfolioLoader("antesrevista.swf","text2.txt");
}
comp3_btn.onRelease = function (){
portfolioLoader("antesrevista.swf","text3.txt");
}
comp4_btn.onRelease = function (){
portfolioLoader("antesrevista.swf","text2.txt");
}
comp5_btn.onRelease = function (){
portfolioLoader("antesrevista.swf","text3.txt");
}
