I am using Adobe Animate (or Adobe Flash Professional) and I often navigate timeline with as3. I want to reset all movieclips (and movieclips inside a moviclip) when the stage reach to an exact frame. like:
if (this.currentFrame == 120)
{
allMovieClips.gotoAndPlay(1);
}
I am thinking about taking access to all movieclips in library but I don't know how. Is there any way to do that?