To add filter effects to DisplayObjects in AS3 it is just as easy as applying text formatting or color formatting – well, there’s an extra intermediary in there but it’s much the same idea.
Easier to show an example than to explain:
var blurred:BlurFilter = new BlurFilter(blurAmount, blurAmount); var filters:Array = [blurred]; myMc.filters = filters;
You’ll end up with a blurred myMC. Be sure to import the appropriate filters (flash.filters)
Tech Reference: AS3
Leave a Reply