Its very easy to edit the pause.g file (which resides in the system folder) to do what you want. Just add a couple of semi-colons to stop the movement in the x and y axes, as below: ; pause.g ; called when a print from SD card is pause G90 G53 G1 Z{move.axes[2].max} F1500 ; move the Z-Axis to the maximum position ;G53 G1 X{move.axes[0].max} F2500 ; move the X-Axis to the maximum position ;G53 G1 Y{move.axes[1].max} F2500 ; move the Y-Axis to the maximum position M5 When you then hit the pause button, the spindle will raise to the highest postion and turn off, but there will be no x or y movement. This will save you a lot of time!