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(25, 35);
addChild(canvas);
}
}
}
Related examples in the same category