Question
Movie Clips in Array
I am trying ot push attached Movieclips into an Array
btnUp.onRelease = function():Void {
var grp1:MovieClip = test.attachMovie("Group1", "mcOne", 1);
myarray.push(grp1);
}
I think this works.
What I am trying to do is that after the user select the movieclips he or she wants (40 choices total) they will be pushed into an array and that when they select finished choosing the movieclips will appear in order in which they chose them in another frame or movieclip. But when it comes to arrays I am clueless.
btnUp.onRelease = function():Void {
var grp1:MovieClip = test.attachMovie("Group1", "mcOne", 1);
myarray.push(grp1);
}
I think this works.
What I am trying to do is that after the user select the movieclips he or she wants (40 choices total) they will be pushed into an array and that when they select finished choosing the movieclips will appear in order in which they chose them in another frame or movieclip. But when it comes to arrays I am clueless.