我正在尝试在舞台上动态放置 MovieClip 的实例。收到错误:
TypeError: Error #2007: Parameter child must be non-null.
at flash.display::DisplayObjectContainer/addChild()
动作脚本:
// properties in class ----------
var circle_ary:Array = new Array;
var circ_num:int;//number of circles on the stage
// dynamically place MovieClip instances on the stage ----------
// inside Constructor function of class
var circ_num:int=20;//number of circles on the stage
for(var i=0; i<circ_num; i++) {
circle_ary[i] = new Circle(); //linkage in the library
addChild(Circle[i]);
}