Featured FLA
» Author: Nitin Tikhe
» Title: Cart
» Description: This Animation Tut is a fun and useful for kids below 15 years. Watch the Flag, Doors, Stick and Horse movements.
» More by Nitin Tikhe
Featured Site
» Posted in the Flash Kit Links section
» Title: Banana Swimwear
» Description: This is a banana swim wear interactive catalog we designed and animated in Flash
We now write functions to load the thumbnails into the nailholders (function preView) and to give function to the nailholder buttons to load the actual images into the slideholder (function showSlide).
function preView (firstSlide,lastSlide,nailName) {
i = firstSlide;
while (i <= lastSlide) {
_root["nailHolder_" + i].loadMovie(nailName + i +".jpg");
i++;
}
_root.whiteBox._visible = false;
unloadMovie(slideHolder);
loadVariablesNum("preview.txt", 0);
}
function showSlide (slideNumber,slideName,slideText,firstSlide,lastSlide) {
_root.slideHolder.loadMovie(slideName + slideNumber + ".jpg");
loadVariablesNum(slideText + slideNumber + ".txt",0);
_root.whiteBox._visible = true;
_root.rightBut._visible = false;
_root.leftBut._visible = false;
}