Extending Flash |
|
|
|
| Objects > Stroke object > stroke.color | |||
Flash MX 2004. In Flash 8 and later, this property is deprecated in favor of stroke.shapeFill.color.
stroke.color
Property; the color of the stroke, in one of the following formats:
"#RRGGBB" or "#RRGGBBAA"0xRRGGBBThe following example sets the stroke color:
var myStroke = fl.getDocumentDOM().getCustomStroke(); myStroke.color = "#000000"; fl.getDocumentDOM().setCustomStroke(myStroke);
|
|
|
|