# Resizing the stage

**URL:** https://forum.kirupa.com/t/resizing-the-stage/171362
**Category:** Uncategorized
**Created:** [December 4, 2005, 9:22pm UTC](https://forum.kirupa.com/t/resizing-the-stage/171362 "2005-12-04T21:22:25Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![fasterthanlight](https://avatars.discourse-cdn.com/v4/letter/f/ecc23a/32.png) [@fasterthanlight](https://forum.kirupa.com/u/fasterthanlight)
#### Post date: [December 4, 2005, 9:22pm UTC](https://forum.kirupa.com/t/resizing-the-stage/171362/1 "2005-12-04T21:22:25Z")

</div>

Alright so I want to resize my stage to fit however large the browser window is. I found a couple threads that lead me to the Stage class, and the actionscipt dictionary gives this example:

```auto
myListener = new Object();
myListener.onResize = function () { ... }
Stage.scaleMode = "noScale"
Stage.addListener(myListener);

```

I don’t know where to go from here, I dont know what function to write to accomplish what I want… any ideas?
