# Full Browser Flash

**URL:** https://forum.kirupa.com/t/full-browser-flash/185126
**Category:** flash
**Created:** [April 11, 2006, 6:29am UTC](https://forum.kirupa.com/t/full-browser-flash/185126 "2006-04-11T06:29:01Z")
**Posts on this page:** 6
**Page:** 1

<div class="post-metadata">

### Author: ![mikedkap](https://avatars.discourse-cdn.com/v4/letter/m/7ab992/32.png) [@mikedkap](https://forum.kirupa.com/u/mikedkap)
#### Post date: [April 11, 2006, 6:29am UTC](https://forum.kirupa.com/t/full-browser-flash/185126/1 "2006-04-11T06:29:01Z")

</div>

Hey guys - I’m trying to have my movie take up the full browser and not slide UP when the window is smaller vertically. I’ve read all of the tutorials but can’t seem to get it not to move up and cut off the top.  
Here is the movie : [http://www.vmg-marketing.com/kirupa/](http://www.vmg-marketing.com/kirupa/)

Any suggestions?

Thanks,  
Mike

---

<div class="post-metadata">

### Author: ![theHollow](https://yyz1.discourse-cdn.com/flex011/user_avatar/forum.kirupa.com/thehollow/32/106_2.png) [@theHollow](https://forum.kirupa.com/u/theHollow)
#### Post date: [April 11, 2006, 7:32am UTC](https://forum.kirupa.com/t/full-browser-flash/185126/2 "2006-04-11T07:32:44Z")

</div>

try adding:

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

I’m not sure if you need the scaleMode part though.

---

<div class="post-metadata">

### Author: ![Greggeh](https://avatars.discourse-cdn.com/v4/letter/g/8baadc/32.png) [@Greggeh](https://forum.kirupa.com/u/Greggeh)
#### Post date: [April 11, 2006, 9:05am UTC](https://forum.kirupa.com/t/full-browser-flash/185126/3 "2006-04-11T09:05:13Z")

</div>

then to position the bar, put every mc you have on the stage in a new mc called “holder” and add this code:

this.onEnterFrame = function(){  
holder.\_y = 0;  
}

---

<div class="post-metadata">

### Author: ![mikedkap](https://avatars.discourse-cdn.com/v4/letter/m/7ab992/32.png) [@mikedkap](https://forum.kirupa.com/u/mikedkap)
#### Post date: [April 11, 2006, 3:40pm UTC](https://forum.kirupa.com/t/full-browser-flash/185126/4 "2006-04-11T15:40:12Z")

</div>

word! all I needed was the “Stage.align = “TL”;” - what does the TL stand for? I’ve never seen that code before…

---

<div class="post-metadata">

### Author: ![mikedkap](https://avatars.discourse-cdn.com/v4/letter/m/7ab992/32.png) [@mikedkap](https://forum.kirupa.com/u/mikedkap)
#### Post date: [April 11, 2006, 4:54pm UTC](https://forum.kirupa.com/t/full-browser-flash/185126/5 "2006-04-11T16:54:55Z")

</div>

ohhhhh “top left” - that must be new to flash 8…?

---

<div class="post-metadata">

### Author: ![theHollow](https://yyz1.discourse-cdn.com/flex011/user_avatar/forum.kirupa.com/thehollow/32/106_2.png) [@theHollow](https://forum.kirupa.com/u/theHollow)
#### Post date: [April 12, 2006, 12:45am UTC](https://forum.kirupa.com/t/full-browser-flash/185126/6 "2006-04-12T00:45:34Z")

</div>

yeah top left. I’m not sure if it is new but i first used it in flash 8
