动态创建影片剪辑实例

发布于 2024-08-16 05:54:01 字数 275 浏览 4 评论 0原文

我使用下面的代码创建 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦开始←不甜 2024-08-23 05:54:01

在 Flash IDE 中,将这些图像设为 MovieClip,并使用类似 XXX_0XXX_1、...、XXX_9 的名称命名您的剪辑
然后您可以在您的函数中使用以下命令获取对剪辑的随机引用:

var myImageName:String="XXX_"+Math.floor(Math.random()*10);
// and then get the movie from the library
var clazz:Class=ApplicationDomain.currentDomain.getDefinition(myImageName) as Class;
if (clazz !== null) {
  var mc:MovieClip=MovieClip(new clazz());
  (...).addChild(mc);
}

In the flash IDE make those image a MovieClip and name your clip with something like that XXX_0, XXX_1,...,XXX_9.
Then you can in your function you can get the random reference to your clip with :

var myImageName:String="XXX_"+Math.floor(Math.random()*10);
// and then get the movie from the library
var clazz:Class=ApplicationDomain.currentDomain.getDefinition(myImageName) as Class;
if (clazz !== null) {
  var mc:MovieClip=MovieClip(new clazz());
  (...).addChild(mc);
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文