To turn the stroke off completely, set thickness to undefined or call lineStyle( ) with no parameters. : lineStyle « Graphics « Flash / Flex / ActionScript
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