如何使用as3同时访问所有动画片段(以及动画片段中的动画片段,......)?

时间:2017-02-07 03:15:22

标签: actionscript-3 flash adobe movieclip multipleselection

我正在使用Adobe Animate(或Adobe Flash Professional),我经常使用as3导航时间轴。 我想在舞台到达精确帧时重置所有动画片段(以及moviclip中的动画片段)。 喜欢:

 if (this.currentFrame == 120) 
    { 
        allMovieClips.gotoAndPlay(1);
    } 

我正在考虑访问库中的所有动画片段,但我不知道如何。 有没有办法做到这一点?

1 个答案:

答案 0 :(得分:3)

您无法访问库中的内容,因为库是设计时的概念。如果要重置当前附加到舞台的所有MovieClip实例,请执行以下操作:

import flash.display.Sprite;
import flash.display.MovieClip;

// Start resetting them from the topmost timeline.
reset(root as Sprite);

function reset(target:Sprite):void
{
    // First, browse all the children of the target.
    for (var i:int = 0; i < target.numChildren; i++)
    {
        var aChild:Sprite = target.getChildAt(i) as Sprite;

        // If a child is a container then go recursive on it.
        if (aChild) reset(aChild);
    }

    // Second, if the target is not only the container
    // of other things but a MovieClip itself then rewind it.
    if  (target is MovieClip)
        (target as MovieClip).gotoAndPlay(1);
}