Minipulating Nested Clips.
container_mc.tv_mc.alpha = .2; // The old way.
container_mc.getChildByName("tv_mc").alpha = .2; // The new way. You can reference a clip by it's instance name. using the getChildByName().