Livecode Wiki
Advertisement

Removes a stack from the message path that was placed in it with the start using command.

Built-in Message handler[]

Syntax:

stop using <stack>

Examples:

stop using stack "project1"

Use the stop using command to remove a stack's scrip from the message path.

You can stop using a stack only if it has previously been inserted in the message path with the start using command. The stop using command does not affect the current stack, which is normally in the message path, or scripts that were placed in the message path with the insert script command.

When you stop using a stack, the releaseStack message is sent to the stack.

Parameters:

  • stack: Any stack reference.

See also: insert script (command),releaseStack (message),stack (object),script (property),

Advertisement