Extending Flash |
|
|
|
| Objects > TextAttrs object > textAttrs.fillColor | |||
Flash MX 2004.
textAttrs.fillColor
Property; the color of the fill, in one of the following formats:
"#RRGGBB" or "#RRGGBBAA"0xRRGGBBThe following example sets the color to red for the selected text field from the character at index 2 up to, but not including, the character at index 8:
fl.getDocumentDOM().selection[0].setTextAttr("fillColor", 0xff0000, 2, 8);
|
|
|
|