radian = 0;rWidth = 100;startX = 200;startY = 200;counter = 0;degree = 0;mcAdd.onPress = function(){ _root.attachMovie("mcShape", "mcShape"+counter, _root.getNextHighestDepth()); counter++; resetPosition();}function resetPosition(){ degree = 360/counter; for(i=0; i<counter; i++){ radian = (degree * i)*(Math.PI/180); trace(degree); x = Math.cos(radian)*rWidth; y = Math.sin(radian)*rWidth; eval("mcShape"+i)._x = startX+x; eval("mcShape"+i)._y = startY-y; }}