使用 AS 2 将影片剪辑从库加载到舞台中

发布于 2024-08-10 05:44:54 字数 51 浏览 3 评论 0原文

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

how can i load a movie clip using AS2 from library into my stage. and how to unload it. could u help me ? i appreciate it

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

孤凫 2024-08-17 05:44:54

在库中,您必须分配一个链接(右键单击该链接)并选中“导出为 Actionscript”并设置名称(例如 myMovieClip)。该名称将由 AttachMovie 方法使用:

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

并用于删除;

this.removeMovieClip('myMovieClipNewName');

乔斯

In the library, you must to assign a Linkage (right click on th mc) and chech Export for Actionscript and set a name (for example myMovieClip). That name will be used by attachMovie method:

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

and for remove;

this.removeMovieClip('myMovieClipNewName');

chaus

清欢 2024-08-17 05:44:54
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颗子弹

depth = 1;
while(depth<100){
this.attachMovie('bullet','bullet' + depth,depth);
this["bullet" + depth]._x = random(550);
this["bullet" + depth]._y = random(400);
depth++;}

//to create 100 bullets randomly on the screen

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文