Skip to content

Latest commit

 

History

History
25 lines (15 loc) · 580 Bytes

File metadata and controls

25 lines (15 loc) · 580 Bytes

stroke.dotSpace

Availability

Flash MX 2004.

Usage

stroke.dotSpace

Description

Property; an integer that specifies the spacing between dots in a dotted line. This property is available only if the stroke.style property is set to dotted. See stroke.style.

Example

The following example sets the dotSpace property to 3 for a stroke style of dotted:

var myStroke = fl.getDocumentDOM().getCustomStroke(); 
myStroke.style = "dotted";
myStroke.dotSpace= 3; 
fl.getDocumentDOM().setCustomStroke(myStroke);