Script doesn't work in fullscreen mode

Hello,

The following problem occured when I tried to view my flash project in full screen mode: When I applied a glowfilter to an movie object it didn’t show when I run it, so I tried to do this with actionscript. It worked when I watched my flashmovie as swf in normal screen mode. But when I wanted to watch it full screen, the glow-script didn’t seem to work anymore?

The actionscript looks like this:

import flash.filters.GlowFilter;
color=0x21FF00;
alpha=20;
blur_X=25;
blur_Y=25;
s=2;
q=2;
ig=false;
k=false;
var filter:GlowFilter = new GlowFilter(color,alpha,blur_X,blur_Y,s,q,ig,k);
var filterss:Array = new Array();
filterss.push(filter);
lijn.filters = filterss;
trace(filter.alpha);

I don’t know if it’s the script or something else that causes this problem, but maybe someone at this forum knows how to solve it?

Thank you