Does the DisplayObject.graphics draw vector support the lift command? I think that SVG path element has a command to lift the pen and then move it to another location. I'm wondering if the Path element in FXG, which is built on top of the DisplayObject.graphics API has the same action.
Example of Path in FXG:
<s:Path data="M 0 0 L 0 100 L 100 100 L 100 0 L 0 0" />
"M 0 0" means move the pen to position x0 y0. "L 0 100" means draw a line from the current position to x0 y100. The first number is x coordinate and second number is y coordinate in the Cartesian coordinate system created by René Descartes.
The invention of Cartesian coordinates in the 17th century by René Descartes (Latinized name: Cartesius) revolutionized mathematics by providing the first systematic link between Euclidean geometry and algebra. Using the Cartesian coordinate system, geometric shapes (such as curves) can be described by Cartesian equations: algebraic equations involving the coordinates of the points lying on the shape. For example, a circle of radius 2, centered at the origin of the plane, may be described as the set of all points whose coordinates x and y satisfy the equation x2 + y2 = 4.
More information on the FXG Path element.
More information on the Graphics class.
From my research it looks like it doesn't support it.