I am getting a very odd result when using this code:
import com.greensock.*;
import com.greensock.easing.*;
import com.greensock.plugins.*;
TweenPlugin.activate([MotionBlurPlugin]);
function init():Void{
mc._visible = false;
doFrame1();
}
function doFrame1():Void{
mc._visible = true;
TweenLite.from(mc,.5,{_x:mc1._x, motionBlur:true,delay:2});
}
init();
There is a jump that happens before the animation.
This only occurs if I use another movieclip _x for the tweenlite, which I absolutely have to do.
In the main version the other mc acts like a tracker.
Any ideas?
https://www.dropbox.com/sh/f9fa8tnvb37ty9z/wBidYq3aYx
This is a reference file.
Thx
P