Hi all, I'm trying to scale a sprite in certain period of time using tweens. The problem is that the console says that the property is not numeric. 
This is the code: 
FlxTween.multiVar(this, {scale.x: 50, scale.y: 50}, 3, {type: FlxTween.ONESHOT}); 
Also try using a singleVar: 
FlxTween.singleVar (this, "scale.x", 50, 2.0, {type: FlxTween.ONESHOT}); 
Any help?