2

如何使用库中的 AS2 将影片剪辑加载到我的舞台中。以及如何卸载它。你能帮帮我吗?我很感激

4

2 回答 2

2

在库中,您必须为 Actionscript 分配链接(右键单击 mc)并检查导出并设置名称(例如 myMovieClip)。attachMovie 方法将使用该名称:

this.attachMovie('myMovieClip', 'myMovieClipNewName', depth);

并删除;

this.removeMovieClip('myMovieClipNewName');

豪斯

于 2009-11-10T18:35:56.617 回答
-1
depth = 1;
while(depth<100){
this.attachMovie('bullet','bullet' + depth,depth);
this["bullet" + depth]._x = random(550);
this["bullet" + depth]._y = random(400);
depth++;}

//在屏幕上随机创建100个子弹

于 2013-10-18T07:46:34.370 回答