Symbolinstance.colorredamount, Symbolinstance.colorredpercent – Adobe Extending Flash Professional CS4 User Manual
Page 446
424
EXTENDING FLASH CS4 PROFESSIONAL
SymbolInstance object
Usage
symbolInstance.colorMode
Description
Property; a string that specifies the color mode as identified in the symbol Property inspector Color pop-up menu.
Acceptable values are
"none"
,
"brightness"
,
"tint"
,
"alpha"
, and
"advanced"
.
Example
The following example changes the
colorMode
property of the first element in the first frame of the first layer in the
timeline to
alpha
:
fl.getDocumentDOM().getTimeline().layers[0].frames[0].elements[0].colorMode = "alpha";
symbolInstance.colorRedAmount
Availability
Flash MX 2004.
Usage
symbolInstance.colorRedAmount
Description
Property; an integer that is part of the color transformation for the instance. This property is equivalent to using the
Color > Advanced setting in the instance Property inspector. Allowable values are from -255 to 255.
Example
The following example sets the
colorRedAmount
of the selected symbol instance to 255:
fl.getDocumentDOM().selection[0].colorRedAmount = 255;
symbolInstance.colorRedPercent
Availability
Flash MX 2004.
Usage
symbolInstance.colorRedPercent
Description
Property; part of the color transformation for the instance. This property is equivalent to using the Color > Advanced
setting in the instance Property inspector (the percentage controls on the left of the dialog box). This value sets the red
values to a specified percentage. Allowable values are from -100 to 100.
Example
The following example sets the
colorRedPercent
of the selected symbol instance to 10: