Difference between revisions of "LOAD PROCESS"
From Macros Wiki
(New page: {{Command|syntax=LOAD_PROCESS <process filename> |description=*DESCRPTION* |param1=<process filename>|param1_desc={{process filename}} }} ===Example=== :- LOAD_PROCESS [[Category:Procs]...) |
|||
(11 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
− | {{Command|syntax=LOAD_PROCESS <process filename> | + | [[Procs:Process_Selection|{{Up}}]] |
− | |description= | + | |
+ | {{Command|syntax=LOAD_PROCESS <process filename> [<clear process list> <exact match>] | ||
+ | |description=:Load an existing process (.prc) file. | ||
+ | |||
+ | |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 "shape2.prc", 1, 0 | ||
+ | <br> | ||
+ | :For an example macro see [[Use_Saved_Process]] | ||
[[Category:Procs]] | [[Category:Procs]] |
Latest revision as of 14:53, 12 November 2015
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