Moving the Pen without Drawing : graphics « Graphics « Flash / Flex / ActionScript






Moving the Pen without Drawing

 
package{
  import flash.display.*;
  
  public class Main extends Sprite{
    public function Main(){

        var shape:Shape = new Shape();
        shape.graphics.lineStyle(0, 0xFF0000);
        shape.graphics.moveTo(100, 100);
        addChild(shape);
    }
  }
}

        








Related examples in the same category

1.Introducing the Graphics Object
2.Creating Fills
3.Drawing Circles
4.Drawing Rounded Rectangles
5.Draw lines
6.Use the graphics
7.Change line style
8.Change scaleX
9.Set Shape position
10.Draw three shapes
11.Draw four shapes
12.Drawing a Straight Line
13.Drawing a Curve
14.Adding a Simple One-Color Fill
15.To move the drawing pen without drawing any line at all, use moveTo( ).
16.To remove all vector drawings in an object, we use the Graphics class's instance method clear( ).
17.Drawing Lines in a Graphics Object