LOAD PROCESS: Difference between revisions

From Macros Wiki
Jump to navigationJump to search
Mikeo (talk | contribs)
No edit summary
Mikeo (talk | contribs)
No edit summary
 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
[[Procs:Process_Selection|{{Up}}]]
[[Procs:Process_Selection|{{Up}}]]


{{Command|syntax=LOAD_PROCESS <process filename>
{{Command|syntax=LOAD_PROCESS <process filename> [<clear process list> <exact match>]
|description=:Load an existing process (.prc) file.
|description=:Load an existing process (.prc) file.


|param1=<process filename>|param1_desc={{process filename}}
|param1=<process filename>|param1_desc=Process filename. Use the complete pathname if it is not in the same folder as the macro.
|param2=<clear process list>|param2_desc=0=Do not clear the process tile list before loading the process file. 1=Clear the list (default).
|param3=<exact match>|param3_desc=0=Do not use exact matching (default). 1=Use exact matching.
 
Exact matching means that an existing tool will only be used if it is an exact match for the one in the process file, otherwise a new tool will be created.
<br>The exact match option was added in GibbsCAM version 11.2.7
 
}}
}}


===Example===
===Example===
:LOAD_PROCESS "shape.prc"
:LOAD_PROCESS "shape.prc"
:LOAD_PROCESS "shape2.prc", 1, 0
<br>
<br>
:For an example macro see [[Use_Saved_Process]]
:For an example macro see [[Use_Saved_Process]]


[[Category:Procs]]
[[Category:Procs]]

Latest revision as of 19:53, 12 November 2015

Up

Command

LOAD_PROCESS <process filename> [<clear process list> <exact match>]


Load an existing process (.prc) file.

Parameters

<process filename>
Process filename. Use the complete pathname if it is not in the same folder as the macro.
<clear process list>
0=Do not clear the process tile list before loading the process file. 1=Clear the list (default).
<exact match>
0=Do not use exact matching (default). 1=Use exact matching.

Exact matching means that an existing tool will only be used if it is an exact match for the one in the process file, otherwise a new tool will be created.
The exact match option was added in GibbsCAM version 11.2.7

Example

LOAD_PROCESS "shape.prc"
LOAD_PROCESS "shape2.prc", 1, 0


For an example macro see Use_Saved_Process