this.attachMovie('newsMcId', 'newsMc', 1, {_x:590, _y:118});
means its on depth1 no?
what does 2**20 mean?
2**20 means 2 to the 20th power.
you're correct, newsMc is created at a removeable depth. the problem is we can't define a tween instance method until the tween instance exists. use:
var newsfade:Tween = new Tween(newsMc, "_alpha", Strong.easeOut, 100, 0, 1, true);
newsfade.stop();
itm3.onPress = function() {
newsfade.start();
newsfade = new Tween(newsMc, "_alpha", Strong.easeOut, 100, 0, 1, true);
var menuTween:Tween = new Tween (menuMc,"_x",Regular.easeInOut,375,150,.75,true);
var contentsTween:Tween = new Tween (contentsMc,"_x",Regular.easeInOut,375,150,.75,true);
var contactMainMcTween:Tween = new Tween (contactMainMc,"_x",Regular.easeInOut,375,150,.75,true);
}
newsfade.onMotionFinished = function(){
newsMc.removeMovieClip();
}