I've tried to add a glowfilter to the canvas but the scroller stops working - the filter is added though.
Scroller works with mousewheel but not with the mouse the "normal way".
I've setup the canvas and that works. I'm calling it canvas then I try to add this filtercode:
- Code: Select all
var myGlow:GlowFilter = new GlowFilter();
myGlow.color = 0x000000;
myGlow.blurX = 2;
myGlow.blurY = 2;
canvas.filters = [myGlow];
Is there some sort of workaround or is this just not possible?
Best, Nikas
