# \<strong\>FullScreen flash... problem with movieClip position\</strong\>

**URL:** https://forum.kirupa.com/t/strong-fullscreen-flash-problem-with-movieclip-position-strong/263878
**Category:** flash
**Created:** [June 20, 2008, 12:07am UTC](https://forum.kirupa.com/t/strong-fullscreen-flash-problem-with-movieclip-position-strong/263878 "2008-06-20T00:07:09Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![designFanatic](https://avatars.discourse-cdn.com/v4/letter/d/54ee81/32.png) [@designFanatic](https://forum.kirupa.com/u/designFanatic)
#### Post date: [June 20, 2008, 12:07am UTC](https://forum.kirupa.com/t/strong-fullscreen-flash-problem-with-movieclip-position-strong/263878/1 "2008-06-20T00:07:09Z")

</div>

Hey,

I’m currently programming a site available to see at:

[http://biddleinc.ca/empiregrill/](http://biddleinc.ca/empiregrill/)

The problem i have is that when I load in external .swf files which are bigger than the main centered movieClip (centeredContent\_mc)… if you resize the browser it will bump the center section to a new position because it’s size has changed. You can see this in the “Take a tour” section.

This is the code im using:

> Stage.scaleMode = “noScale”;  
> Stage.align = “TL”;

var stageListener: Object = new Object();

stageListener.onResize = positionContent;

Stage.addListener(stageListener);

function positionContent():Void  
{  
centeredContent\_mc.\_x = Stage.width/2 - centeredContent\_mc.\_width/2;  
centeredContent\_mc.\_y = Stage.height/2 - centeredContent\_mc.\_height/2;

```
if ( Stage.height/Stage.width &gt; background_mc._height / background_mc._width )
{
    var ratio = background_mc._width/background_mc._height;
    
    if ( Stage.height &gt; 400 )
    {
        background_mc._height = Stage.height;
        background_mc._width = Stage.height*ratio;
    }
}
else
{
    var ratio = background_mc._height/background_mc._width;

    if ( Stage.width &gt; 400 )
    {
        background_mc._width = Stage.width;
        background_mc._height = Stage.width*ratio;
    }
}    

```

}

positionContent();  
[COLOR=RoyalBlue]

[COLOR=Black]My question is: Is there any way to specify the new movieClip and keep if from changing the size of the mc it’s being loaded into?

I would GREATLY appreciate any comments!!![/COLOR][/COLOR]
