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