删除重复电影剪辑的最佳方法?

发布于 2024-10-11 17:28:29 字数 472 浏览 1 评论 0原文

ham_mc.onPress=function(){
startDrag(this);
_root.ham_mc.swapDepths(getNextHighestDepth());
}
ham_mc.onRelease=ham_mc.onReleaseOutside=function(){
stopDrag();
_root.ham_mc.duplicateMovieClip("ham_mc"+x,_root.getNextHighestDepth());
x++
}

此代码仅生成一个新的 ham_mc,用户在其中释放原始文件(拖放)。原点又回到了起点。我有一个名为 Cheese_mc 的电影剪辑的相同代码,用户也可以拖放奶酪。

那么,如果创建了多个 ham_mc 和 Cheese_mc,删除最后创建的一个的最佳方法是什么?

我想要一个简单的按钮,我们称之为delete_mc。按下该按钮,将反转上一个重复电影剪辑操作。我该如何实施?

ham_mc.onPress=function(){
startDrag(this);
_root.ham_mc.swapDepths(getNextHighestDepth());
}
ham_mc.onRelease=ham_mc.onReleaseOutside=function(){
stopDrag();
_root.ham_mc.duplicateMovieClip("ham_mc"+x,_root.getNextHighestDepth());
x++
}

This code just generates a new ham_mc where the user releases the original (drag and drop). The original returns to its starting point. I have the same code for a movieclip called cheese_mc, the user can drag and drop cheese too.

So, if more than one of these ham_mc's and cheese_mc's are created, what is the best way to delete the last one created?

I would like a simple button, lets call it delete_mc. The button is pressed, reversing the last duplicateMovieClip action. How do I implement this?

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

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

发布评论

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

评论(1

我ぃ本無心為│何有愛 2024-10-18 17:28:29

将最后创建的 MovieClip 存储在变量中。然后使用removeMovieClip();

_root.lastClip = null;

ham_mc.onPress=function(){
    startDrag(this);
    _root.ham_mc.swapDepths(getNextHighestDepth());
}
ham_mc.onRelease=ham_mc.onReleaseOutside=function(){
    stopDrag();
    _root.lastClip = _root.ham_mc.duplicateMovieClip("ham_mc"+x,_root.getNextHighestDepth());
    x++;
}

delete_mc.onRelease = function () {
    if (_root.lastClip != null) _root.lastClip.removeMovieClip();
}

Store the last created MovieClip in a variable. Then use removeMovieClip();

_root.lastClip = null;

ham_mc.onPress=function(){
    startDrag(this);
    _root.ham_mc.swapDepths(getNextHighestDepth());
}
ham_mc.onRelease=ham_mc.onReleaseOutside=function(){
    stopDrag();
    _root.lastClip = _root.ham_mc.duplicateMovieClip("ham_mc"+x,_root.getNextHighestDepth());
    x++;
}

delete_mc.onRelease = function () {
    if (_root.lastClip != null) _root.lastClip.removeMovieClip();
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文