# Full Screen Browser with FOOTER

**URL:** https://forum.kirupa.com/t/full-screen-browser-with-footer/271451
**Category:** flash
**Created:** [September 23, 2008, 10:02am UTC](https://forum.kirupa.com/t/full-screen-browser-with-footer/271451 "2008-09-23T10:02:34Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![PinoyGee](https://avatars.discourse-cdn.com/v4/letter/p/3e96dc/32.png) [@PinoyGee](https://forum.kirupa.com/u/PinoyGee)
#### Post date: [September 23, 2008, 10:02am UTC](https://forum.kirupa.com/t/full-screen-browser-with-footer/271451/1 "2008-09-23T10:02:34Z")

</div>

HI everyone , I’m having trouble with putting a footer in a full screen Flash site.

Im looking for something like this : [http://www.epuls.nl](http://www.epuls.nl)

This is the code I am using for my Fullscreen ,but when I put a footer in it it wont work. Is the problem the Fullscreen code or is there a better way then this

\*\*[COLOR=“DarkRed”]Stage.scaleMode = “noScale”;

var HPositioner:Number = (Math.round((Stage.width-800)/2));  
var VPositioner:Number = (Math.round((Stage.height-700)/2));  
var myListener:Object = new Object();

myListener.onResize = function () {  
setUpInterface()  
}

setProperty(bgGradient\_mc, \_width, Stage.width);  
setProperty(bgGradient\_mc, \_height, Stage.height);  
var resizeListener:Object = new Object();  
Stage.addListener(resizeListener);  
resizeListener.onResize = function() {  
setProperty(bgGradient\_mc, \_width, Stage.width);  
setProperty(bgGradient\_mc, \_height, Stage.height);

```
Stage.addListener(myListener);

```

function setUpInterface(){  
//footer mc  
footer\_mc.\_y = Stage.height - footer\_mc.\_height  
footer\_mc.\_x = 0  
footer\_mc.\_width = Stage.width  
}

setUpInterface()

};[/COLOR]\*\*

I really hope that someone knows the answer ofmy quistion.

Thank you in advance ,  
Geoffrey Punsalan
