Need assistance here!

Hey guys,

Can one of you talented folks help me out here? I’m having problems stopping this motion blur. I’ve tried all the tutorials but like I was saying my AS skills are out of date.

Here is what I have so far…

 
import flash.filters.BlurFilter;
import mx.transitions.Tween;
import mx.transitions.easing;
 
new mx.transitions.Tween(myClip, "_y", mx.transitions.easing.Elastic.easeOut, -200, -10, 2, true);
var myBlurFilter = new BlurFilter(BlurX, 10, 50);
var myFilterArray = new Array();
myFilterArray.push(myBlurFilter);
myClip.filters = myFilterArray;

I got all the effects to work including the blur but for some reason I can’t get rid of the blur once the easing is done.

I thought I needed to use the “onMotionFinished” function but that doesn’t seem to work either.

Thanks in advanced!