User Guide
822 ActionScript classes
beginBitmapFill(bmp:
BitmapData,
[matrix:Matrix],
[repeat:Boolean],
[smoothing:Boolean])
: Void
Fills a drawing area with a bitmap image.
beginFill(rgb:Number
, [alpha:Number]) :
Void
Indicates the beginning of a new drawing path.
beginGradientFill(fi
llType:String,
colors:Array,
alphas:Array,
ratios:Array,
matrix:Object,
[spreadMethod:String
],
[interpolationMethod
:String],
[focalPointRatio:Num
ber]) : Void
Indicates the beginning of a new drawing path.
clear() : Void Removes all the graphics created during runtime by
using the movie clip draw methods, including line
styles specified with MovieClip.lineStyle().
createEmptyMovieClip
(name:String,
depth:Number) :
MovieClip
Creates an empty movie clip as a child of an existing
movie clip.
createTextField(inst
anceName:String,
depth:Number,
x:Number, y:Number,
width:Number,
height:Number) :
TextField
Creates a new, empty text field as a child of the movie
clip on which you call this method.
curveTo(controlX:Num
ber,
controlY:Number,
anchorX:Number,
anchorY:Number) :
Void
Draws a curve using the current line style from the
current drawing position to (anchorX, anchorY) using
the control point that ((controlX, controlY)
specifies.
Modifiers Signature Description