I have a MyGame.fla with some animation "MyAnim"(MovieClip). I want this animation to be hidden and stopped initially. I plan to start and show it when some button is clicked.
Of course, I can just type something like
getChildByName("MyAnim").stop();
getChildByName("MyAnim").visible = false;
in the constructor of MyGame in the source file MyGame.as.
But maybe it's possible to set it hidden and stopped from within Flash?