Using action scripted tweening causing pain

I started making a menu system the other day and It started out with a scrollpane as the method for scrollin through it, but the scroolpane cause problems with text scrollers and As so I dumped the plan. Now I’m trying to use TheCanadian’s tutorial to make a nice ActionScripted tween to move the Mc to the spots I want. Unfortunately, I’m having trouble understanding it enough to modify it to my specifications.

My code is:

 on (release) {
 import mx.transitions.Tween;
 import mx.transitions.easing.*;
 var xPosT:Tween = new Tween(stats, "_y", none.easeOut, 0, Stage.height, 0, false);
 }
 

Any help would be appreciated.