我想知道如何让补间在执行前多等几秒钟?我的代码如下:
btn_1.addEventListener(MouseEvent.CLICK, about_navigate);
function about_navigate(event:MouseEvent):void
{
topbarTween.yoyo();
//how to make the below tween wait 2 seconds before it is carried out
btmTween.yoyo();
}
我是 AS3 的新手,所以任何帮助将不胜感激!