Difference between revisions of "MC-Basic:DetachFrom"

From SoftMC-Wiki
Jump to: navigation, search
(Created page with "{{MC-Basic |SHORT FORM= |SYNTAX= DetachFrom ''<task> <element name>'' |AVAILABILITY= 0.4.15.5rc9 |DESCRIPTION= Detach given element from the given task. Same functionali...")
 
Line 4: Line 4:
  
 
|SYNTAX=
 
|SYNTAX=
DetachFrom ''<task> <element name>''
+
DetachFrom ''<element name>'' File = ''<task> ''
  
  
Line 43: Line 43:
  
 
<pre>
 
<pre>
-->attachto ttt.prg a16
+
-->attachto   a16 File = ttt.prg
-->detachfrom ttt.prg a16
+
-->detachfrom a16 File = ttt.prg
 +
-->
 
</pre>
 
</pre>
  

Revision as of 09:56, 17 May 2016

Detach given element from the given task. Same functionality as DETACH but from external context.

Syntax

DetachFrom <element name> File = <task>

Availability

0.4.15.5rc9

Type

<task>: File specification, including file name and extension.
<element>: Element specification can be axis, group or robit.

Range

<task>: The file must exist on the Flash Disk.

Scope

Task or Terminal

Examples

-->attachto$ "ttt.prg"  a16
-->detachfrom$ "ttt.prg"  a16
-->

or

-->attachto   a16 File = ttt.prg
-->detachfrom a16 File = ttt.prg
-->

See Also