# Bitmap in movieclip

**URL:** https://forum.kirupa.com/t/bitmap-in-movieclip/309090
**Category:** Uncategorized
**Created:** [May 6, 2010, 3:37pm UTC](https://forum.kirupa.com/t/bitmap-in-movieclip/309090 "2010-05-06T15:37:37Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![minimalismh](https://avatars.discourse-cdn.com/v4/letter/m/a9adbd/32.png) [@minimalismh](https://forum.kirupa.com/u/minimalismh)
#### Post date: [May 6, 2010, 3:37pm UTC](https://forum.kirupa.com/t/bitmap-in-movieclip/309090/1 "2010-05-06T15:37:37Z")

</div>

Hi all,  
I wrote a script that shows a bitmap with a noise effect.

```auto

var bmpd:BitmapData = new BitmapData(stage.stageWidth, stage.stageHeight);
			var bmp:Bitmap = new Bitmap(bmpd);
			addChild(bmp);
			
			bmp.addEventListener(Event.ENTER_FRAME,
			function (e:Event) : void
			{
       			 bmpd.noise(Math.random()*1000, 0, 200, 1, true);
    		}
				);

```

So i want to put this bitmap in a movieclip to make it fullscreen resizable.  
Any Ideas? Thanks for your time

Marco.
