Difference between revisions of "MC-Basic:IDLETASK$"

From SoftMC-Wiki
Jump to: navigation, search
(Created page with '{{MC-Basic |SHORT FORM= ITas$ |SYNTAX= IdleTask$ {''<task>''} |AVAILABILITY= All versions |DESCRIPTION= This command stops the task at the end of the line currently being exec…')
 
m (1 revision)
(No difference)

Revision as of 16:09, 13 December 2010

This command stops the task at the end of the line currently being executed, and idles all its events. An idled task can be continued (using the CONTINUETASK command) or terminated (using the KILLTASK command).

IDLETASK$ does not stop the motion currently executing. This is significant because all the events are idled and cannot respond to axis motion.

Short form

ITas$

Syntax

IdleTask$ {<task>}

Availability

All versions

Type

<task>: String

Scope

Task or Terminal

Limitations

Write-Only. Task must be loaded in memory.

Examples

IdleTask$ “Task1.prg”

Or

Common Shared Str1 as string

Str1 = “Task1.Prg”

IdleTask$ Str1

See Also