There Must Be A Better Way Of Doing This?

Basically I’ve got a group of thumbnails that upload external jpgs to a photo container mc.

That works perfectly, including transitions and preloaders etc.

However I’m trying to make it so that you can’t reclick the thumbnail that currently loaded. As it annoying plays the transition again.

I’ve made code for the buttons for a group of six thumbnails is:

on (release) {
thumb1.enabled = false;
thumb1.useHandCursor = false;
thumb2.enabled = true;
thumb2.useHandCursor = true;
thumb3.enabled = true;
thumb3.useHandCursor = true;
thumb4.enabled = true;
thumb4.useHandCursor = true;
thumb5.enabled = true;
thumb5.useHandCursor = true;
thumb6.enabled = true;
thumb6.useHandCursor = true;
}

Obviously the false statements change for each thumb but is there someway I could avoid all the turning ons and offs, by using an array or something?

Don’t really know where to start as I’m relatively novice at flash.