User Guide
204 Objects
fill.color
Availability
Flash MX 2004.
Usage
fill.color
Description
Property; the color of the fill, in one of the following formats:
■ A string in the format "#RRGGBB" or "#RRGGBBAA"
■ A hexadecimal number in the format 0xRRGGBB
■ An integer that represents the decimal equivalent of a hexadecimal number
Example
The following example sets the fill color of the current selection:
var fill = fl.getDocumentDOM().getCustomFill();
fill.color = '#FFFFFF';
fl.getDocumentDOM().setCustomFill( fill );
fill.colorArray
Availability
Flash MX 2004.
Usage
fill.colorArray
Description
Property; an array of colors in the gradient, expressed as integers. This property is available
only if the value of the
fill.style property is either "radialGradient" or
"linearGradient". See fill.style
Example
The following example displays the color array of the current selection, if appropriate, in the
Output panel:
var fill = fl.getDocumentDOM().getCustomFill();
if(fill.style == "linearGradient" || fill.style == "radialGradient")
alert(fill.colorArray);