Hi, Mike
LazyCam has a "Default" Post built into it, Use "Set Post Processor" in Setup menu, Find and load it "Mill Example.PSt"
Hears what I did, Put in ;##--------------------------- note's to show what was being used and how it was being posted.
*******************************ProgramStart**********************************
;1---------------(Program posted with TestPost.pst)
********************************ToolChange***********************************
M5 M9 ;2----------'Turn the spindle and coolant off
M6 T ;3---------------{TOOLNUM} (TOOLChange) 'toolchange and put a note in the code that it is a ToolChange
G43 H ;4----------{TOOLNUM} 'Put in the Tool length offset and it is the same number as the ToolNUm
********************************ChainStart***********************************
***********************************Rapid*************************************
[ G{MODE} ][ Z{RAPIDHEIGHT}] ;5-------------------(This is a rapid)'This will pick the Z up to the rapidheight
'and with the []'s if the data in the []'s has not changed it will not be put out
'you can have white space

and a note that is not on a Gcode line
[G{MODE}][ X{XPOS}][ Y{YPOS}] ;6--------'Now move to the X and Y pos that
[{SPINDLEON}] ;7--------- 'Turn on the spindle and if it is on don't put out the M3
[G{MODE}][ Z{ZPOS}] ;8--------'Move down to the height that the move was to end at
***********************************ZRapid************************************
'This is a Z only move to change the hieght of the tool.. this could be changed
'to {RAPIDHEIGHT} but the jobs will take longer to cut
[G{MODE}] Z{ZPOS} ;9-------------
************************************Line**************************************
Your G-code will look like this and help you see what's going on.
N5 ;1---------------(Program posted with TestPost.pst)
N10 M5 M9 ;2----------
N15 M6 T1 ;3---------------1 (TOOLChange)
N20 G43 H ;4----------1
N25 ; 4A ChainStart------------
N30 G0 Z1.0000 ;5-------------------(This is a rapid)
N35 X4.3750 Y27.5000 ;6--------
N40 M3 ;7---------
N45 ;8--------
N50 G1 Z-0.5000 F50.00 ;10------------
N55 X4.3750 Y26.8750 F200.00 ;10------------
N60 X4.3750 Y25.6250 ;10------------
N65 X4.1250 ;10------------
N70 X4.1250 Y28.1250 ;10------------
N75 X4.3750 ;10------------
N80 Y27.5000 ;10------------
N85 X4.7500 ;10------------
N90 X4.7500 Y26.8750 ;10------------
N95 X4.7500 Y25.2500 ;10------------
N100 X3.7500 ;10------------
N105 X3.7500 Y28.5000 ;10------------
N110 X4.7500 Y28.5000 ;10------------
N115 X4.7500 Y27.5000 ;10------------
Ver. 3.00.39 has some fixes, But 3.00.40 should be out soon, Nothing to do with LC though.
Thanks, Chip