I Need Help.. Urgent!

Hi,

the tutorial on kirupa.com only show how to navigate between the images, can someone help me with the coding to display the image names and i on the image names, i wish to put a links to each one so that every time the “01” image is loaded, “01” text will display with “01.zip” for example will display and allow other to download the image…

pls help

thanks in advance

i think this will show you the way:
[AS]
NumberOfImage = 20;
for(i=0;i<NumberOfImage;i++){
_root[“imageButton”+i].onPress = function(){
if(i<10){
i = “0”+i;
}
link = i+".zip"
getURL(link);
}
}
[/AS]

e.s.x.s