删除重复电影剪辑的最佳方法?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将最后创建的 MovieClip 存储在变量中。然后使用removeMovieClip();
Store the last created MovieClip in a variable. Then use removeMovieClip();