removeScriptedSprite()

Usage

-- Lingo syntax
spriteChannelObjRef.removeScriptedSprite()

// JavaScript syntax
spriteChannelObjRef.removeScriptedSprite();

Description

Sprite Channel method; switches control of a sprite channel from script back to the Score.

Parameters

None.

Example

The following statement removes the scripted sprite from sprite channel 5:

-- Lingo syntax
channel(5).removeScriptedSprite()

// JavaScript syntax
channel(5).removeScriptedSprite();

See also

makeScriptedSprite(), Sprite Channel