Code:
function navOver(e:MouseEvent):void{
trace(e.target)
TweenMax.to(e.target, .5, {y:90, ease:Back.easeOut});
}
this code makes movie clip which is under cursor to move to y=90...
i need to input code that makes all the rest movie clips that are NOT under cursor(target) to do something else like y=110....
something like this
Code:
function navOver(e:MouseEvent):void{
trace(e.target)
TweenMax.to(e.target, .5, {y:90, ease:Back.easeOut});
TweenMax.to(***[U][mc_1,mc_2,mc_3][/U]***, .5, {y:110, ease:Back.easeOut});
}
any ideas???