I've started a new post as this is a bit different to downloading parameters.

I think I have recovered all the data and parameters and all the screen are there. I'm now looking at saving the 2 tool change macros. One for auto and one manual.

Here is one macro

Code:
09021(MANUAL TOOL CHANGE MACRO)
IF[#1015 EQ 1] GOTO 50; 	CHECK MACHINE LOCK / Z AXIS LOCK
#1100=1;			CHECK M86 COMMAND FORM 09020 SIGNAL
#101 = #4001;			MEMORY G CODE
#102 = #4002;			MEMORY G CODE
#103 = #4003;			MEMORY G CODE
M05;				SPINDLE STOP
G17 G91 G80 G0;			DEM G STATION
M19;				SPINDLE ORIENTATION
M86;				ENTER ATC MODE
M07;				AIR BLOW
G30 Z0.0;			Z AXIS RETURN SECOND POINT
M00;				PROGRAM STOP
M07;				AIR BLOW
G28 Z0.0;			RETURN REF
G#101 G#102 G#103;		SET G CODE
#1100 = 0;			CANCEL M86 COMMAND FROM 09020 SIGNAL
M87;				FINISH TOOL CHANGE
N50 # 3000 = 2 (MACHINE LOCK / Z AXIZ LOCK) ;ALAM MESSAGE
M99;
%
I can't find much on entering or sending macros to the controller.

Any suggestions ?