Shape.graphicsのmoveTo()メソッドとlineTo()メソッドを使用して、いくつかのエッジで線を描画したとします。これらのエッジの1つを後で変更できますか?たとえば、次のようになります。
var line:Shape = new Shape();
line.graphics.lineStyle(2, 0x000000, .75);
line.graphics.moveTo(10,10);
line.graphics.lineTo(50,50); // Can I modify coordinates of the edge created on this line?