A selectable program using array?

Hello everybody …i can’t work out with my program…so,i wish to hear from you all who know my problem…
My program is enable user to choose movie with click on any radio button. Then the movie will store in the array. then the contain in the array will be loaded.
Now i would like save the choice of user in a array and after that the program will trace the arrayand load the swf files that choose by user.User can choose as many choice as they want.
My problem is
1. when click, how the swf files save in array
2. there are the “next” button to let user click and proceed to view their next choice.The “nexScene” and "nextFrame’ is not i want.I m seeking any opinion.

soli…i not so understand urs…never mind,i trying work it out…now i paste my script here…maybe u can scan through my problem…

In the page enable user to choose their choice was a few radio button. Since array no allow to store a swf file so when the button name (btn1, btn2, btn3 ,btn4) click, a ‘middle button’ name (black1,black2,black3 ,black4) will store in the array. After i trace the array, the ‘middle person’ will be matched. For example, if ‘black1’ traced, then ‘abc.swf’ will be load.

I hope my short explanation will not confuse you.Below is my coding...

In the action layer:

         var tabCount=1;
         for (i=1; i<5; i++){
         _root["blk"+i].tabIndex=tabCount;
         tabCount++;
         }

        stop();

In the fuction layer:

       function getEntries(){
       chooseArray= new Array(4);
       for (i=0;i<chooseArray.length;i++){
           chooseArray*=_root["blk"+(i+1)];

if((_root.blk1._visible==true)
and (_root.blk2._visible==false)
and (_root.blk3._visible==false)
and (_root.blk4._visible==false))
{

chooseArray=(“black1”);
}

else if ((blk2._visible==true)
and (_root.blk1._visible==false)
and (_root.blk3._visible==false)
and (_root.blk4._visible==false))
{
    chooseArray=("black2");

    }

else if ((_root.blk3._visible==true)
and (_root.blk1._visible==false)
and (_root.blk2._visible==false)
and (_root.blk4._visible==false))
{
chooseArray=(“black3”);

   }


 else if ((_root.blk4._visible==true)
   and (_root.blk1._visible==false)
and (_root.blk2._visible==false)
and (_root.blk3._visible==false))

{
chooseArray=(“black4”);

}
}

}

hope to get your reply soon…

best wishes…

it looks like you declared your array the equivilant of an asp/vb dim:
chooseArray= new Array(4); will not give you an array w/ length of 4. it gives you an array length of 1.
chooseArray= new Array(1,2,3,4); will give an array with 4 entries -
chooseArray= new Array([tabIndex:1],[tabIndex:2],[tabIndex:3],[tabIndex:4]); will give you an array of 4 objects, each with a tabIndex property.

yaya…thankx ya…i try to change my script…
but if u have any idea ,please kindly drop me a message…