continueTo not working

For some reason continueTo is not working in my flash. When I type it in the AS panel it does not turn blue and remains black.

looks around for thecanadian:stuck_out_tongue:


//Program button code
import mx.transitions.Tween; 
import mx.transitions.easing.*; 

p1.onRollOver = function():Void{
	var moveup:Tween  = new  Tween(p1, "_y", easeOut, 104, 98, .5, true);
}

p1.onRollOut = function():Void{
	moveup.continueTo(104);
}