Skip virtual movements

Command

#skip VirtualMovements(<parameter>)#

Parameter

0 (default): virtual movements are “completed”.
1: Virtual movements are skipped

Movements of unavailable but programmed main axes (X, Y & Z) can be skipped with the command 'skip VirtualMovements'.

Sample:

The interpolation group (CfgBuildGroup) contains only assignments for the X and Y axis. The Z axis is not assigned, but programmed in the parts program.

(Startposition X0 Y0 Z0) 
N10 #skip VirtualMovements(1)#
N20 G01 X100 Y200 F6000
N30 G01 Z1000 (virtual movement, because z is not assigned)
N40 G01 X500

Segment N30 is skipped during execution of this program.