I'm trying to create sprites in another sprite where the inner sprite
is dyamically named based on an array index number. Does anyone know
if this is possible. I've tried it with teh array access operator as
follow, but it didn't work.
var parentSprite:Sprite = new Sprite();
addChild(parentSprite);
var subSprite:Sprite = new Sprite();
parentSprite["dynName"+1] = subSprite;
help would be appreciated--thanks.
keith