# Full screen and yes I have looked at other forums

**URL:** https://forum.kirupa.com/t/full-screen-and-yes-i-have-looked-at-other-forums/196882
**Category:** Uncategorized
**Created:** [August 11, 2006, 4:32pm UTC](https://forum.kirupa.com/t/full-screen-and-yes-i-have-looked-at-other-forums/196882 "2006-08-11T16:32:56Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![Multi\_Task](https://avatars.discourse-cdn.com/v4/letter/m/c6cbf5/32.png) [@Multi\_Task](https://forum.kirupa.com/u/Multi_Task)
#### Post date: [August 11, 2006, 4:32pm UTC](https://forum.kirupa.com/t/full-screen-and-yes-i-have-looked-at-other-forums/196882/1 "2006-08-11T16:32:56Z")

</div>

Hello World…

I have done the walk through on full flash @ g2&L w/ Lee Brimelow and have my tile duplicating and looks marvelous. However, I am having trouble on positioning stuff. When i normally make a site I will have the general layout, buttons, logo, header, footer whatever and then use a container\_mc to load different swf’s for the relevant content.

I am having problem orchestrating this method when using the Fullscreen.

So onto Questions, question 1:  
Can anyone please give me some insight as to how to place my instances and have them position correctly via X and Y and how?

For my container\_mc I know I need the following AS:

```auto

container._x = Stage.width / 2;
container._y = Stage.height / 2;
 
var resizeObj:Object = new Object();
Stage.addListener(resizeObj);
resizeObj.onResize = function() {
    container._x = Stage.width/2;
    container._y = Stage.height/2;
};

```

My stage is 780 X 542. I normally set up my movies with logo, header (buttons), footer and then a container\_mc to load relevant content however using the full flash method I am having trouble laying it out, whether or not to have all those within main movie (like I would normally) or to have container\_mc load another movie which would have my set up like I mentioned and then another container2\_mc load relevant content.

Thanks in advance any help is appreciated.  
MT
