0

我将 MC 放在一个数组中,并希望稍后从索引中删除它,直到最后。

//Removeing MC from stage, from an index till the end
LISTmc.removeChild(listArray[clickedIndex+1]);

//Removing MC starting from an index till the end
listArray.splice(clickedIndex+1);

从舞台上移除 MC 的方法与从阵列中移除它的方法相同吗?

4

1 回答 1

1

您的意思是,对于您删除的数组中的 MovieClip,您还想从舞台上删除它们吗?

for (var i:int = clickedIndex+1; i < listArray.length;i++)
{
  //if this is on timeline leave as is otherwise you need to reference stage
  removeChild(listArray[i]);

  //if the movieclips are in various movieclips then you can do:
  // var parent:DisplayObject = (listArray[i]).parent;
  // parent.removeChild(listArray[i]);

}

listArray = listArray.slice(0,clickedIndex);//returns a new array from start index to end index
于 2009-11-03T12:53:59.963 回答