Extending Flash |
|
|
|
| Objects > drawingLayer object > drawingLayer.drawPath() | |||
Flash MX 2004.
drawingLayer.drawPath(path)
path A Path object to draw.
Nothing.
Method; draws the path specified by the path parameter. You typically use this method only when creating extensible tools.
The following example draws a path specified by the Path object named gamePath:
fl.drawingLayer.drawPath(gamePath);
|
|
|
|