so i have an array containing many instances. let's say movieclips.

and i have another array which contains numbers..in this case those numbers represent selected indices that i've somehow chosen!

var manydots:Array = new Array ();

for (var i=0; i<10; i++)
{
    var newDot:dot = new dot  ;
    manydots.push(newDot);
}

var indices:Array = [0,1,5,8,4]

i want to use AddChild to add those movieclips into my scene, but not all of them, only selected indices contained in my 2nd array

link|improve this question
feedback

2 Answers

up vote 2 down vote accepted

I think this is what you are looking for,

for (var j=0; j<indicies.length; j++) {
    addChild(manyDots[incidies[j]]);
}
link|improve this answer
feedback

sberry solution is correct. But you may also want to check that you actually are not adding null as a child.

for each(var i:int in indices) {
    if (i < manydots.length) {
        var d:dot = manydots[i];
        if (d) {
            addChild(d);
        }
    }
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.