To turn the stroke off completely, set thickness to undefined or call lineStyle( ) with no parameters. : LineStyle : Graphics Flash / Flex / ActionScript examples


Flash / Flex / ActionScript examples » Graphics » LineStyle »

 

To turn the stroke off completely, set thickness to undefined or call lineStyle( ) with no parameters.


 
package{
  import flash.display.*;
  
  public class Main extends Sprite{
    public function Main(){
        var canvas:Shape = new Shape(  );
        canvas.graphics.lineStyle(undefined);   // Turn off lines in canvas
        canvas.graphics.lineStyle(  );            // Same thing
        
        canvas.graphics.lineTo(2535);
        addChild(canvas);
    }
  }
}

        



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


Flash / Flex / ActionScript examples

 Navioo Graphics
» LineStyle