SET CUSTOM PROC NAME
From Macros Wiki
Jump to navigationJump to search
Command
- SET_CUSTOM_PROC_NAME <process number>, <variable>
- Set the name of a custom process.
Parameters
- <process number>
- Process number.
- <variable>
- Name of string variable to be set to the process name.
Example
- a$ = "ProcName"
- SET_CUSTOM_PROC_NAME 4, a$
Workaround for creating Volumill process
- create_process MILL_ROUGH, 1, 1
- SET_CUSTOM_PROC_NAME 1, "Custom_Plugin_VoluMill"
- SET_VOLUMILL_PROC_DATA 1, HighFeed, 10000
- SET_VOLUMILL_PROC_DATA 1, RPM, 6000
- SET_VOLUMILL_PROC_DATA 1, Entryclear, 10
- SET_VOLUMILL_PROC_DATA 1, ExitClear, 10
(dirty workaround until creation of Custom Process types are available)