//InformationTitles import caurina.transitions.Tweener; var offAlpha:Number = 0.3 var titleSpeed:Number = 1; var titlesPos:Number = 475; this.alpha = offAlpha; function gotoTitle(){ Tweener.addTween(this.parent, {x:titlesPos - (this.x - (this.width*0.5)), time:titleSpeed, transition:"easeoutcubic"}); Tweener.addTween(this, {alpha:1, time:titleSpeed, transition:"easeoutcubic"}); } function fadeBack(){ Tweener.addTween(this, {alpha:offAlpha, time:titleSpeed, transition:"easeoutcubic"}); }