Bitmap and Bitmap Data.
Bitmap is a display object which wraps the BitmapData within it. The BitmapData is the array of data used to form the pixels in the image. Now a point to note here is that you can't use use the BitmapData of one state of a movieclip and expect it to gather all the frames. What it does is it takes a photograph sort of and gets its pixel data value.
I thought today I would post something about Bitmap and Bitmap Data in AS3.
Bitmap is a display object which wraps the BitmapData within it. The BitmapData is the array of data used to form the pixels in the image. Now a point to note here is that you can’t use use the BitmapData of one state of a movieclip and expect it to gather all the frames. What it does is it takes a photograph sort of and gets its pixel data value.
Ok so all this may seem like a lot of text. Let’s just jump into flash and figure this out. Let’s start by creating a movie clip with a text field inside of it.
Give this movieclip an instance name of mc and hit f9 to get into the actionscript panel.
Now we begin by declaring our variables and defining their properties.
1) width- compulsory
2) height -compulsory
3) alpha
4) fill colour

So now obviously we have a new display object called newBitmap. This has the display object properties and methods attached to it.

There are of course uses of this to create objects which wont ever scale. I think its really handy. Besides, this is just the first step in many more things you can do with the bitmapdata. I will try and post more about it. It is truly an amazing class. I am going to try and have another post about this in the near future.
Download the source here Bitmap-Data example