Set the line style to 1 pixel-thick, solid green
package{
import flash.display.*;
public class Main extends Sprite{
public function Main(){
var canvas:Shape = new Shape( );
canvas.graphics.lineStyle(1, 0x00FF00)
canvas.graphics.lineTo(25, 35);
addChild(canvas);
}
}
}
Related examples in the same category