Хех, у меня фильтр удаляет все вертикальные линии moveto,lineto на this.sprite.x (на границах в спрайте). Нельзя фильтр как то ограничить по бокам в спрайте?

Код AS3:
this.GlowGray = new GlowFilter();
this.GlowGray.inner = false;
this.GlowGray.alpha = 0.9;
this.GlowGray.color = 0x505050;
this.GlowGray.blurX = 10;
this.GlowGray.blurY = 10;
this.sprite.filters = [this.GlowGray];
this.sprite.getChildAt(0).filters = null;