我试图用这段代码让一个对象走到前面:
flap1.addEventListener(MouseEvent.CLICK, move_to_top); // Add the button click
function move_to_top(e:MouseEvent):void {
movieclip1.setChildIndex(this, movieclip1.numChildren-1);
}
但我收到错误 #2025:提供的 DisplayObject 必须是调用者的孩子。
如果对象在前面,则需要在 jquery 中执行类似 .animation 之类的操作,例如http://api.jquery.com/animate/,尤其是带有动画块 1 和块 2 的演示:
$( "#go1" ).click(function() {
$( "#block1" )
.animate({
width: "90%"
}, {
queue: false,
duration: 3000
})
但比 as3