Hi there

I was trying to Blur + Saturate an MC using actionscript. I only managed to do 1 of them.

here is the code:



PHP Code:
import flash.filters.BlurFilter;

//blur filter
var blurred:BlurFilter = new BlurFilter(771);
var 
storedBlur:Array = [blurred];
this.btn1.onRelease = function() {
world.filters storedBlur;
    
};
this.btn2.onRelease = function() {
world.filters null;
    
}; 
I guess the big question is...how to do i set them both (Blur + Saturate)?

Also, if possible..is there a way to make this a "transition type" effect?


Sunny