从库中创建Image的动态实例

时间:2011-10-17 15:25:29

标签: flash actionscript-3

我只想在我的图书馆中制作80幅图像的幻灯片。 所以我的问题是使用循环

创建从库到舞台的每个图像(mc)的实例

有人可以帮忙吗?

1 个答案:

答案 0 :(得分:0)

您可以将它们全部放在舞台上(没有任何实例名称或链接)到新的动画片段中(例如,让我们调用一个 mcHolder ),然后他们就像这样访问它们:

for (var i:uint = 0; i < mcHolder.numChildren; i++)
{
   var photo:DisplayObject = mcHolder.getChildAt(i) as DisplayObject;

   // Do something with the photos, like place them random on the screen.
   photo.x = Math.random() * 400;
   photo.y = Math.random() * 400;
   photo.rotation = -10 + Math.random() * 20;
}

希望有所帮助!