The Enchanted Cave 2
Delve into a strange cave with a seemingly endless supply of treasure, strategically choos
4.34 / 5.00 31,296 ViewsGhostbusters B.I.P.
COMPLETE edition of the interactive "choose next panel" comic
4.07 / 5.00 10,082 ViewsI'm having trouble applying blur filters in action script 3. From what I've gathered I have to create a filter variable. So I did this
var blurX:Number=10;
var blurY:Number=10;
var filter:BlurFilter=new BlurFilter(blurX,blurY,BitmapFilterQuali ty.HIGH);
and I apply the filter like so.
bosses.filter=filter;
I get no compiler errors. But nothing is blurred. Any ideas?
hmm that doesn't seem to work for some reason.
At 11/17/08 11:28 PM, Radica1Faith wrote: and I apply the filter like so.
bosses.filter=filter;
Shouldn't it be bosses.filters? I don't use AS3, but that's how it is in AS2.
"Whoever said 'winners never quit' obviously never considered addicts." - Hoeloe
yep that's what it was. Thanks guys.