Hi, I'm trying to apply a motion blur to a 3d Tween (using z axis) but it removed the MovieClip from the stage
This works fine:
TweenMax.from(sq1, 3, { x:400 ,y:300, motionBlur:true} );
This, however does not:
TweenMax.from(sq1, 3, { z: "300", x:400 ,y:300, motionBlur:true} );
Any suggestions? thanks