开发者

Dynamically creating movieclip instances

开发者 https://www.devze.com 2022-12-15 02:27 出处:网络
I use the code below to create 3 movie clips. var A:Array = new Array(); for (var i:uint = 0; i < 3 ; i++) {

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开发者_C百科=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.


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);
}
0

精彩评论

暂无评论...
验证码 换一张
取 消