I'm not able to get any of the animation tools to work. I have an MC on the stage where the basic functions work, however, when I try to animate anything, I get error messages:
Here's a sample: On the stage, I have an "ball"" mc.
import flash.ui.*;
import flash.display.*;
import flash.events.*;
import flash.text.*;
import flash.geom.*;
import flash.utils.*;
import flash.system.*;
import com.greensock.*;
import flash.display.Sprite;
///////Does Not Work
TweenLite.to(mc, 0.5, {x:191, y:354, motionBlur:true, ease:Elastic.easeOut});
//I get error message Scene 1, Layer 'Layer 1', Frame 1, Line 16, Column 60 1120: Access of undefined property Elastic.
///////Works
//TweenMax.to(mc, 1, {colorMatrixFilter:{colorize:0xff0000, amount:1}});
//////Works
//TweenLite.to(mc, 1, {autoAlpha:0.1});
I'm using Flash CC 2014.