Black bar with stage.stageWidth

Hey again folks.

I’ve fixed all my problems so far but their is 1 problem that I cant seem to solve. My scale script is working but now I got this black bar on the right side of the screen(swf or browser) wich won’t go away. So it scale’s full screen yes, but with a black bar on 1 side, so it still aint full screen ;/.

Actionscript wich causes it (im pretty sure) :

stage.align = StageAlign.TOP_LEFT;
stage.scaleMode = StageScaleMode.NO_SCALE;

stage.addEventListener( Event.ENTER_FRAME, orly);

function orly( event:Event ):void

{

my_tg2.width = stage.stageWidth ;
my_tg2.height = stage.stageHeight ;

}

stage.addEventListener( Event.RESIZE, handleResize );

function handleResize( event:Event ):void

{

my_tg2.width = stage.stageWidth ;
my_tg2.height = stage.stageHeight;

}

Yes I got 2 scripts doing the same thing pretty much, but the RESIZE event make’s the blackbar appear when I resize, so I added the ENTER_FRAME script so the blackbar is visible even when you don’t resize. ( for personal use atm) So when I located the problem of the blackbar ill remove the ENTER_FRAME script.

So the problem is somewhere in the my_tg2.width = stage.stageWidth ; code, probarly has to do with the stage, I traced the stage and the output is exactly the stage i’ve setted so im pretty hopeless atm.

I really hope you can help me out on this one,
thanks.