Здравствуйте. Не срабатывает onComplete в Tweener. Не могу понять в чем проблема. Вот код:

Код AS3:
public function checkPortal(e:Event):void
{
if (mc.hitTestObject(portalExit.area))
{
portalExit.removeEventListener(Event.ENTER_FRAME, movePortal);
pause2();
Tweener.addTween(mc, {alpha:0,time:0.5,x:portalExit.x,y:portalExit.y-20,transition:"linear", onComplete:removeExit2});
}
}
public function removeExit2():void
{
trace("removeExit2");
pause2();
Tweener.addTween(portalExit, {alpha:0,scaleX:0.3,scaleY:0.3,time:0.5,transition:"linear", onComplete:removeAll2});
}