Hi, i'm trying to effect a number of movieclips inside another movieclip, in this case set the alpha to 20%.
But all i get is an error message. (TypeError: Error #1010: A term is undefined and has no properties. at array_fla::MainTimeline/frame1())
Anyone knows why it's not working?
var myClip = new mcClip;
addChild(myClip);
myClip.x = 270;
myClip.y = 175;
for (var i:Number = 1; i < 6; i++) {
trace([i]);
myClip.circle[i].alpha = .2;
}
(there are five circles on the stage in the myClip movieclip named circle1, circle2, circle3...)