Programmer Guide/Command Reference/UNLOAD: Difference between revisions
From STX Wiki
Jump to navigationJump to search
(initial import) |
No edit summary |
||
(4 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
{{DISPLAYTITLE:{{SUBPAGENAME}}}} | {{DISPLAYTITLE:{{SUBPAGENAME}}}} | ||
UNLOAD MACROCODE|SPUCODE|SOURCECODE <var>fileName</var> [ /Force ] [ /Nolog ][ [[Programmer_Guide/Command_Reference_Options/Silent|/Silent]] ] | |||
UNLOAD SOUNDFILE <var>soundfilePaths</var> [ [[Programmer_Guide/Command_Reference_Options/Silent|/Silent]] ] | |||
<code> | The <code>ULOAD</code> family if {{STX}} commands unloads (hence the name) either the source code of macros (<code>UNLOAD MACROCODE</code>), classes and signal processing units (<code>UNLOAD SPUCODE</code>), or closes at least one sound file. | ||
<code>UNLOAD | |||
;<var>fileName</var> | ;<var>fileName</var> | ||
:The name of the {{Stx}} sourcecode file to unload. | |||
:The name of the sourcecode file to unload. | |||
;<var>soundfilePaths</var> | ;<var>soundfilePaths</var> | ||
:A blank separated list of paths to soundfiles to unload. | |||
;<code>/Force</code> | |||
:Forces the file to be unloaded (this makes sense only with <code>MACROCODE</code>, <code>SPUCODE</code> and <code>SOURCECODE</code>). This can be useful with classes inheriting from parent classes. Repeat the <code>unload</code> process until all dependencies have been removed. | |||
;<code>/Nolog</code> | |||
:If specified, no log message is generated in the {{STx}} log. | |||
;<code>[[Programmer_Guide/Command_Reference_Options/Silent|/Silent]]</code> | |||
:If specified, errors will generate warning messages rather than error messages. See [[Programmer_Guide/Command_Reference_Options/Silent|The Silent Flag]] for details. | |||
Quite obviously, source code can only be unloaded if it is not being used. | |||
Latest revision as of 15:24, 7 May 2014
UNLOAD MACROCODE|SPUCODE|SOURCECODE fileName [ /Force ] [ /Nolog ][ /Silent ] UNLOAD SOUNDFILE soundfilePaths [ /Silent ]
The ULOAD
family if STx commands unloads (hence the name) either the source code of macros (UNLOAD MACROCODE
), classes and signal processing units (UNLOAD SPUCODE
), or closes at least one sound file.
- fileName
- The name of the STx sourcecode file to unload.
- soundfilePaths
- A blank separated list of paths to soundfiles to unload.
/Force
- Forces the file to be unloaded (this makes sense only with
MACROCODE
,SPUCODE
andSOURCECODE
). This can be useful with classes inheriting from parent classes. Repeat theunload
process until all dependencies have been removed. /Nolog
- If specified, no log message is generated in the STx log.
/Silent
- If specified, errors will generate warning messages rather than error messages. See The Silent Flag for details.
Quite obviously, source code can only be unloaded if it is not being used.