PLUGIN
Syntax: #PLU plugin-name value
Note: Not currently implemented in CMUD
If value is 0, the named plugin is unloaded, otherwise the named plugin is loaded.
If the plugin uses the COM interface (vs the API), the COM object for the plugin is available once it is loaded via the %_pluginname syntax. Within VBScript or JScript, the plugin COM object is available as the standard PluginName object.
PLUGIN Example
#PLUGIN Sample 0 Unloads the plugin named "Sample"
#SHOW %_Sample.Property Displays the "Property" of the Sample plugin COM object
#CALL %_Sample.Method Execute the "Method" of the Sample plugin COM object
#SHOW %mss("Sample.Property") Display the "Property" of the Sample plugin COM object using VBScript.