Why is this tracing correctly, but not functioning?
//Main Animator
function animateit(Event:MouseEvent):void{
MenuHandlersanskey();
var thex = parseInt(inputx.text);
var they:Number = parseInt(inputy.text);
var stagger:Number = parseFloat(inputstag.text);
var duration:Number = parseFloat(inputspeed.text);
var thexscale:Number = parseFloat(inputscalex.text);;
var theyscale:Number = parseFloat(inputscaley.text);;
var therotation:Number = parseFloat(inputrotate.text);
var thealpha:Number = parseFloat(inputalpha.text);
trace (String('\"+'+thex+'\"'));
TweenMax.allFrom(Boxes,duration,{x:('\"+'+thex+'\"'),y:"+100",scaleX:thexscale,scaleY:theyscale,alpha:thealpha,rotation:therotation,ease:theease},stagger);
}