I have a set of movieclips setup as arrays in As3. I got the code to work were once a button is clicked a movieclip show on stage; but once the user clicks on another thumbnail the previous movieclip is still on stage. What I am trying to accomplish is I want the other arrays or movieclips to become hidden once the main array or clip that the user clicks becomes visible. I know I probably need a if loop for the arrays heres my code:
var soles:Array = [sle1,sle2,sle3,sle4];
var Slbtn_arr:Array = [sole,sole2,sole3,sole4];
for (var i= 0; i < Slbtn_arr.length; i++)
{
trace(i,Slbtn_arr[i]);
var temp_Slbtn = Slbtn_arr[i];
temp_Slbtn.addEventListener(MouseEvent.CLICK, btnCl);
temp_Slbtn.count = i;
soles[i].visible = false;
soles[0].visible = true;
}
function btnCl(e)
{
var num = e.target.count;
trace(e.target, e.target.count, soles[e.target.count]);
//hideAll()
soles[num].visible = true;
}
function hideAll()
{
for (var i= 0; i < soles.length; i++)
{
soles[i].visible = false;
}
}