Hi. I wish for a movie clip to slowly blur over a couple of seconds. Is there some way to do this without using Tweener or some other external class? I only wish to use the tween class.
The code I use at the moment is below, but this doesn't do it gradually, just turns the blur on like a switch:
var blur : BlurFilter = new BlurFilter();
blur.blurX = 4;
blur.blurY = 4;
blur.quality = BitmapFilterQuality.HIGH;
chrNicky.filters = [blur];
I need the blur to happen over the course of two seconds.
Cheers, Dan