The following code sets the line style to 1 pixel-thick, solid black: : lineStyle « Graphics « Flash / Flex / ActionScript






The following code sets the line style to 1 pixel-thick, solid black:

 

lineStyle(thickness:Number = 1.0,
          color:uint = 0,
          alpha:Number = 1.0,
          pixelHinting:Boolean = false,
          scaleMode:String = "normal",
          caps:String = null,
          joints:String = null,
          miterLimit:Number = 3)

package{
  import flash.display.*;
  
  public class Main extends Sprite{
    public function Main(){
        var canvas:Shape = new Shape(  );
        canvas.graphics.lineStyle(1)
        
        canvas.graphics.lineTo(25, 35);
        
        addChild(canvas);
        
    }
  }
}

        








Related examples in the same category

1.To turn the stroke off completely, set thickness to undefined or call lineStyle( ) with no parameters.
2.Set Caps style to Round
3.Set the line style to 1 pixel-thick, solid green
4.Set the line style to 2 pixels thick, 50% transparent green
5.Apply a 3 pixel-thick blue stroke
6.Change line style while drawing
7.To set the rendering style for corners, we use lineStyle( )'s joints parameter.