Fullscreen problem with blank space
the problem is when I clicked on the button to play the swf on larger size.
it shows up like this

How can i get rid of the blank space there?
this is the script i write on the first frame of timeline to play fullscreen:
---------------------------------------------------------------------------------------------------------
import flash.system.fscommand;
fscommand("fullscreen", "true");
fscommand("allowscale", "false");
stage.addEventListener(Event.ADDED, FLVAdded, true);
function FLVAdded(e:Event):void
{
if (e.target is FLVPlayback)
{
e.target.fullScreenTakeOver = false;
}
}
---------------------------------------------------------------------------------------------------------
and this is the script i write on frame 310 that contain the button for viewing larger size of the swf.
---------------------------------------------------------------------------------------------------------
ekonomi_1_button.addEventListener(MouseEvent.CLICK, fl_ClickToLoadUnloadSWF_20);
import fl.display.ProLoader;
import flash.display.Loader;
var fl_ProLoader_20:ProLoader;
//This variable keeps track of whether you want to load or unload the SWF
var fl_ToLoad_20:Boolean = true;
function fl_ClickToLoadUnloadSWF_20(event:MouseEvent):void
{
if (fl_ToLoad_20)
{
fl_ProLoader_20 = new ProLoader();
fl_ProLoader_20.load(new URLRequest("swf/Ekonomi_1_1.swf"));
addChild(fl_ProLoader_20);
}
else
{
fl_ProLoader_20.unload();
removeChild(fl_ProLoader_20);
fl_ProLoader_20 = null;
SoundMixer.stopAll();
}
// Toggle whether you want to load or unload the SWF
fl_ToLoad_20 = ! fl_ToLoad_20;
Ekonomi_1_1.stop();
}
---------------------------------------------------------------------------------------------------------
anyone help me please..