Difference between revisions of "SET CUSTOM PROC NAME"
From Macros Wiki
Line 2: | Line 2: | ||
{{Command|syntax=SET_CUSTOM_PROC_NAME <process number>, <variable> | {{Command|syntax=SET_CUSTOM_PROC_NAME <process number>, <variable> | ||
− | |description=:Set | + | |description=:Set the name of a custom process. |
|param1=<process number>|param1_desc={{process number}} | |param1=<process number>|param1_desc={{process number}} | ||
− | |param2=<variable>|param2_desc={{ | + | |param2=<variable>|param2_desc={{parameter_variable_string_name}} the process name. |
}} | }} | ||
===Example=== | ===Example=== | ||
− | :SET_CUSTOM_PROC_NAME | + | :a$ = "ProcName" |
+ | :SET_CUSTOM_PROC_NAME 4, a$ | ||
[[Category:Procs]] | [[Category:Procs]] |
Latest revision as of 19:58, 14 January 2011
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$