There's an animation (MovieClip) in my scene. There's a sound accompanying animation. I inserted it into the first frame of the animation. I want this animation to be inactive initially. I plan to activate it when some button is pressed. I don't know how to set it "inactive" from within Adobe Flash workspace, so I just put in constructor of my scene:
MovieClip(getChildByName("MyAnim")).stop();
By it does not prevent that sound to start playing when my scene appears!
How do I manage it?