Bitmapinstance.setbits(), Bitmapinstance.vpixels – Adobe Extending Flash Professional CS5 User Manual
Page 55
33
EXTENDING FLASH PROFESSIONAL
BitmapInstance object
Last updated 5/2/2011
bitmapInstance.setBits()
Availability
Flash MX 2004.
Usage
bitmapInstance.setBits(bitmap)
Parameters
bitmap
An object that contains
height
,
width
,
depth
,
bits
, and
cTab
properties. The
height
,
width
, and
depth
propertiesare integers. The
bits
property is a byte array. The
cTab
property is required only for bitmaps with a bit
depth of 8 or less and is a string that represents a color value in the form
"#RRGGBB"
.
Note: The byte array is meaningful only when referenced by an external library. You typically use it only when creating
an extensible tool or effect.
Returns
Nothing.
Description
Method; sets the bits of an existing bitmap element. This lets you create bitmap effects by getting the bits out of the
bitmap, manipulating them, and then returning the bitmap to Flash.
Example
The following code tests whether the current selection is a bitmap and then sets the height of the bitmap to 150 pixels:
var isBitmap = fl.getDocumentDOM().selection[0].instanceType;
if(isBitmap == "bitmap"){
var bits = fl.getDocumentDOM().selection[0].getBits();
bits.height = 150;
fl.getDocumentDOM().selection[0].setBits(bits);
}
See also
bitmapInstance.vPixels
Availability
Flash MX 2004.
Usage
bitmapInstance.vPixels
Description
Read-only property; an integer that represents the height of the bitmap—that is, the number of pixels in the vertical
dimension.