User Guide
Stroke object 277
Description
Property; an integer that specifies the lengths of the blank parts of a dashed line. This property is
available only if the
stroke.style property is set to "dashed".
Example
See stroke.dash1.
stroke.density
Availability
Flash MX 2004.
Usage
stroke.density
Description
Property; a string that specifies the density of a stippled line. This property is available only if the
stroke.style property is set to "stipple". Acceptable values are "very dense", "dense",
"sparse", and "very sparse".
Example
The following example sets the density property to "sparse" for the stroke style of stipple:
var myStroke = fl.getDocumentDOM().getCustomStroke();
myStroke.style = "stipple";
myStroke.dotSpace= 3;
myStroke.variation = "random sizes";
myStroke.density = "sparse";
fl.getDocumentDOM().setCustomStroke( myStroke );
stroke.dotSize
Availability
Flash MX 2004.
Usage
stroke.dotSize
Description
Property; a string that specifies the dot size of a stippled line. This property is available only if the
stroke.style property is set to "stipple". Acceptable values are "tiny", "small", "medium",
and
"large".
The following example sets the
dotsize property to "tiny" for the stroke style of stipple:
var myStroke = fl.getDocumentDOM().getCustomStroke();
myStroke.style = "stipple";
myStroke.dotSpace= 3;
myStroke.dotsize = "tiny";
myStroke.variation = "random sizes";