[MX] Resizable window after export movie

Why does my exported swf window rezise to the images size on the stage?
I tried fullscreen but didnt work!

here is the .fla

Thanks in advance :slight_smile:

I cant open your file for some reason…

Take a look at the screen capture!
After I click the file.swf, it should fill the screen but it autoresizes to the image that is loaded into a mc. The image is 300px (hight and weight).
Here is the code on frame1:

// comando para fullscreen
fscommand("fullscreen", true);
fscommand("allowscale", false);
stop();

// funcao que attacha mc_loadimg e carrega img
function attachmc () {
	attachMovie("loadimg", "mc_loadimg", 1);
	_root.mc_loading._x = 0;
	_root.mc_loading._y = 0;
	// load img into attached mc_loading
	loadMovie("001.jpg", _root.mc_loading);

	trace("img loaded");
	trace("posX =" + _root.mc_loadimg._x);
	trace("posY =" + _root.mc_loadimg._y);
}

:confused:

I forgot to post the image.
Here it is.