# Working with the 4 corners of the screen/Centering movieclip on the stage

**URL:** https://forum.kirupa.com/t/working-with-the-4-corners-of-the-screen-centering-movieclip-on-the-stage/233025
**Category:** flash
**Created:** [July 19, 2007, 2:51pm UTC](https://forum.kirupa.com/t/working-with-the-4-corners-of-the-screen-centering-movieclip-on-the-stage/233025 "2007-07-19T14:51:22Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![RubenDoliveira](https://yyz1.discourse-cdn.com/flex011/user_avatar/forum.kirupa.com/rubendoliveira/32/3905_2.png) [@RubenDoliveira](https://forum.kirupa.com/u/RubenDoliveira)
#### Post date: [July 19, 2007, 2:51pm UTC](https://forum.kirupa.com/t/working-with-the-4-corners-of-the-screen-centering-movieclip-on-the-stage/233025/1 "2007-07-19T14:51:22Z")

</div>

Hello,

\*\*1) Does anyone know how to put 4 movieclips in the 4 corners of the screen? \*\*

This is a clear example of what I want to do: [http://www.thefwa.com/](http://www.thefwa.com/)  
As you can see, the “Featured” menu is always at the right side of the screen and the stage is set to 100% width and height.

For e.g, with the

```auto
stage.align = StageAlign.BOTTOM_LEFT;

```

I can’t see my movieclip at the bottom left corner of the screen, it simply stays near the bottom left.

I have already a stage class that sets my bitmap background to fullscreen, the problem is that I can’t work right with the movieclips.

**2) My second problem is how to center a movieclip ?**

```auto
mc.x = ((stage.stageWidth / 2) - (mc.width / 2));

```

Is this supposed to work ?

Thanks in advance.
