动态创建影片剪辑实例
我使用下面的代码创建 3 个影片剪辑。
var A:Array = new Array();
for (var i:uint = 0; i < 3 ; i++) {
A[i] = new hayvanSec();
A[i].x = 240+i*160;
A[i].y=300;
addChild(A[i]);
}
我的库中有 10 个图像文件。我想在那些动态创建的影片剪辑中随机显示这些图像之一。
I use the code below to create 3 movie clips.
var A:Array = new Array();
for (var i:uint = 0; i < 3 ; i++) {
A[i] = new hayvanSec();
A[i].x = 240+i*160;
A[i].y=300;
addChild(A[i]);
}
I have 10 image files in the library. I want to show one of these images inside those dynamically created movie clips randomly.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 Flash IDE 中,将这些图像设为
MovieClip
,并使用类似XXX_0
、XXX_1
、...、XXX_9 的名称命名您的剪辑
。然后您可以在您的函数中使用以下命令获取对剪辑的随机引用:
In the flash IDE make those image a
MovieClip
and name your clip with something like thatXXX_0
,XXX_1
,...,XXX_9
.Then you can in your function you can get the random reference to your clip with :