Dave does the test Gcode file you load have an "M30" in the last line? Just curious(;-)
'Macro To AUTOEXTENTS
Sub main()
Msg="Is Your Z HEIGHT Safe To Travel?"
Response = MsgBox(Msg, 4 )
If Response = 7 Then
GoTo N3:
Else
GoTo N2:
End If
N2:
DoButton(8) 'ZeroXyZ
DoButton(9)
DoOemButton(160) 'Regen ToolPath
While Isloading()
Wend
DoButton(2)
SetVar(100,Getoemdro(4))
SetVar(101,Getoemdro(10))
Setvar(110,Getoemdro(5))
Setvar(111,Getoemdro(11))
While Ismoving()
Wend
'DoOemButton(169)
While Ismoving()
Wend
Code"G1 X#100 Y#110 F30"
While Ismoving()
Wend
Code"G4 P3"
Code"G1 X#100 Y#111 F30"
While Ismoving()
Wend
Code"G4 P3"
Code"G1 X#101 Y#111 F30"
While Ismoving()
Wend
Code"G4 P3"
Code"G1 X#101 Y#110 F30"
While Ismoving()
Wend
Code"G4 P3"
Code"G1 X#100 Y#110 F30"
While Ismoving()
Wend
Code"G4 P3"
Code"G1 X0.000 Y0.000 F30"
While Ismoving()
Wend
DoButton(2)
GoTo N4:
N3:
MsgBox("Move Z To A Safe Position And Restart")
GoTo N4:
N4:
End Sub
End