Skip to content

Latest commit

 

History

History
24 lines (14 loc) · 492 Bytes

File metadata and controls

24 lines (14 loc) · 492 Bytes

stroke.scaleType

Availability

Flash 8.

Usage

stroke.scaleType

Description

Property; a string that specifies the type of scale to be applied to the stroke. Acceptable values are "normal", "horizontal", "vertical", and "none".

Example

The following example sets the scale type of the stroke to horizontal:

var myStroke = fl.getDocumentDOM().getCustomStroke(); 
myStroke.scaleType = "horizontal"; 
fl.getDocumentDOM().setCustomStroke(myStroke);