Apply a 3 pixel-thick blue stroke
package{
import flash.display.*;
public class Main extends Sprite{
public function Main(){
var canvas:Shape = new Shape( );
canvas.graphics.lineStyle(3, 0x0000FF); // Apply blue stroke
canvas.graphics.lineTo(25, 35);
addChild(canvas);
}
}
}
Related examples in the same category