В документации зелёных носков написано:
Цитата:
clear(tweens:Array = null):void
Empties the timeline of all child tweens/timelines, or you can optionally pass an Array containing specific tweens/timelines to remove.
|
У меня есть код:

Код AS3:
trace(timeLine.getChildren());
timeLine.clear();
trace("***",timeLine.getChildren());
Также пробовал:

Код AS3:
trace(timeLine.getChildren());
timeLine.clear(timeLine.getChildren());
trace("***",timeLine.getChildren());
Output получился вот такой (в обоих случаях):
Цитата:
[object TweenLite],[object TweenLite]
*** [object TweenLite],[object TweenLite]
|
То есть, функция clear ничего не очистила(( Чем такое могло бы быть вызвано?